* Define the "web" routes for the application. * * These routes all receive session state, CSRF protection, etc. * * @return void */
()
| 50 | * @return void |
| 51 | */ |
| 52 | protected function mapWebRoutes() |
| 53 | { |
| 54 | Route::middleware('web') |
| 55 | ->namespace($this->namespace) |
| 56 | ->group(base_path('routes/web.php')); |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Define the "api" routes for the application. |