RouteServiceProvider.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 the routes for the application.
  23. *
  24. * @return void
  25. */
  26. public function map(): void
  27. {
  28. $this->mapApiRoutes();
  29. $this->mapWebRoutes();
  30. }
  31. /**
  32. * Define the "api" routes for the application.
  33. *
  34. * These routes are typically stateless.
  35. *
  36. * @return void
  37. */
  38. protected function mapApiRoutes(): void
  39. {
  40. Route::prefix('api')->middleware('api')->namespace($this->namespace)->group(base_path('routes/api.php'));
  41. }
  42. /**
  43. * Define the "web" routes for the application.
  44. *
  45. * These routes all receive session state, CSRF protection, etc.
  46. *
  47. * @return void
  48. */
  49. protected function mapWebRoutes(): void
  50. {
  51. Route::middleware('web')->namespace($this->namespace)->group(base_path('routes/web.php'));
  52. }
  53. }