RouteServiceProvider.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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->mapApiRoutes();
  33. $this->mapWebRoutes();
  34. $this->mapAdminRoutes();
  35. //
  36. }
  37. /**
  38. * Define the "web" routes for the application.
  39. *
  40. * These routes all receive session state, CSRF protection, etc.
  41. *
  42. * @return void
  43. */
  44. protected function mapWebRoutes()
  45. {
  46. Route::middleware('web')
  47. ->namespace($this->namespace)
  48. ->group(base_path('routes/web.php'));
  49. }
  50. /**
  51. * Define the "api" routes for the application.
  52. *
  53. * These routes are typically stateless.
  54. *
  55. * @return void
  56. */
  57. protected function mapApiRoutes()
  58. {
  59. Route::middleware('api')
  60. ->namespace($this->namespace)
  61. ->group(base_path('routes/api.php'));
  62. }
  63. protected function mapAdminRoutes()
  64. {
  65. Route::middleware('web')
  66. ->namespace($this->namespace)
  67. ->group(base_path('routes/admin.php'));
  68. }
  69. }