12345678910111213141516171819 |
- <?php
- namespace App\Http\Controllers\Notice\Front;
- use App\Http\Controllers\FrontController;
- use App\Models\Answer;
- use App\Models\Notice;
- use App\Models\Question;
- use Carbon\Carbon;
- class NoticesController extends FrontController
- {
- public function __construct()
- {
- parent::__construct();
- }
- }
|