RouteServiceProvider.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Support\Facades\Route;
  4. use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
  5. class RouteServiceProvider extends ServiceProvider
  6. {
  7. /**
  8. * This namespace is applied to your controller routes.
  9. *
  10. * In addition, it is set as the URL generator's root namespace.
  11. *
  12. * @var string
  13. */
  14. protected $namespace = 'App\Http\Controllers';
  15. /**
  16. * Define your route model bindings, pattern filters, etc.
  17. *
  18. * @return void
  19. */
  20. public function boot()
  21. {
  22. //
  23. parent::boot();
  24. }
  25. /**
  26. * Define the routes for the application.
  27. *
  28. * @return void
  29. */
  30. public function map()
  31. {
  32. $this->mapWebRoutes();
  33. //
  34. }
  35. /**
  36. * Define the "web" routes for the application.
  37. *
  38. * These routes all receive session state, CSRF protection, etc.
  39. *
  40. * @return void
  41. */
  42. protected function mapWebRoutes()
  43. {
  44. Route::group([
  45. 'namespace' => $this->namespace, 'middleware' => 'web',
  46. ], function ($router) {
  47. require app_path('Http/routes.php');
  48. });
  49. }
  50. }