RouteServiceProvider.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. * This namespace is applied to your controller routes.
  8. *
  9. * In addition, it is set as the URL generator's root namespace.
  10. *
  11. * @var string
  12. */
  13. protected $namespace = 'App\Http\Controllers';
  14. /**
  15. * Define the routes for the application.
  16. *
  17. * @return void
  18. */
  19. public function map(): void {
  20. $this->mapApiRoutes();
  21. $this->mapWebRoutes();
  22. }
  23. /**
  24. * Define the "api" routes for the application.
  25. *
  26. * These routes are typically stateless.
  27. *
  28. * @return void
  29. */
  30. protected function mapApiRoutes(): void {
  31. Route::prefix('api')->middleware('api')->namespace($this->namespace)->group(base_path('routes/api.php'));
  32. }
  33. /**
  34. * Define the "web" routes for the application.
  35. *
  36. * These routes all receive session state, CSRF protection, etc.
  37. *
  38. * @return void
  39. */
  40. protected function mapWebRoutes(): void {
  41. Route::middleware('web')->namespace($this->namespace)->group(base_path('routes/web.php'));
  42. }
  43. }