RouteServiceProvider.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
  4. use Illuminate\Support\Facades\Route;
  5. class RouteServiceProvider extends ServiceProvider
  6. {
  7. /**
  8. * The path to the "home" route for your application.
  9. *
  10. * @var string
  11. */
  12. public const HOME = '/';
  13. /**
  14. * This namespace is applied to your controller routes.
  15. *
  16. * In addition, it is set as the URL generator's root namespace.
  17. *
  18. * @var string
  19. */
  20. protected $namespace = 'App\Http\Controllers';
  21. /**
  22. * Define your route model bindings, pattern filters, etc.
  23. *
  24. * @return void
  25. */
  26. public function boot()
  27. {
  28. //
  29. parent::boot();
  30. }
  31. /**
  32. * Define the routes for the application.
  33. *
  34. * @return void
  35. */
  36. public function map()
  37. {
  38. $this->mapApiRoutes();
  39. $this->mapWebRoutes();
  40. $this->mapUserRoutes();
  41. $this->mapAdminRoutes();
  42. }
  43. /**
  44. * Define the "api" routes for the application.
  45. *
  46. * These routes are typically stateless.
  47. *
  48. * @return void
  49. */
  50. protected function mapApiRoutes()
  51. {
  52. Route::prefix('api')
  53. ->middleware('api')
  54. ->namespace($this->namespace)
  55. ->group(base_path('routes/api.php'));
  56. }
  57. /**
  58. * Define the "web" routes for the application.
  59. *
  60. * These routes all receive session state, CSRF protection, etc.
  61. *
  62. * @return void
  63. */
  64. protected function mapWebRoutes()
  65. {
  66. Route::middleware('web')
  67. ->namespace($this->namespace)
  68. ->group(base_path('routes/web.php'));
  69. }
  70. protected function mapUserRoutes()
  71. {
  72. Route::middleware(['web', 'user'])
  73. ->namespace($this->namespace)
  74. ->group(base_path('routes/user.php'));
  75. }
  76. protected function mapAdminRoutes()
  77. {
  78. Route::middleware(['web', 'admin'])
  79. ->namespace($this->namespace)
  80. ->group(base_path('routes/admin.php'));
  81. }
  82. }