NoticesController.php 316 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Http\Controllers\Notice\Front;
  3. use App\Http\Controllers\FrontController;
  4. use App\Models\Answer;
  5. use App\Models\Notice;
  6. use App\Models\Question;
  7. use Carbon\Carbon;
  8. class NoticesController extends FrontController
  9. {
  10. public function __construct()
  11. {
  12. parent::__construct();
  13. }
  14. }