RouteServiceProvider.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Cache\RateLimiting\Limit;
  4. use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
  5. use Illuminate\Http\Request;
  6. use Illuminate\Support\Facades\RateLimiter;
  7. use Illuminate\Support\Facades\Route;
  8. class RouteServiceProvider extends ServiceProvider
  9. {
  10. /**
  11. * The path to the "home" route for your application.
  12. *
  13. * This is used by Laravel authentication to redirect users after login.
  14. *
  15. * @var string
  16. */
  17. // public const HOME = '/home';
  18. /**
  19. * The controller namespace for the application.
  20. *
  21. * When present, controller route declarations will automatically be prefixed with this namespace.
  22. *
  23. * @var string|null
  24. */
  25. protected $namespace = 'App\\Http\\Controllers';
  26. /**
  27. * Define your route model bindings, pattern filters, etc.
  28. *
  29. * @return void
  30. */
  31. public function boot()
  32. {
  33. $this->configureRateLimiting();
  34. $this->routes(function () {
  35. Route::prefix('api')
  36. ->middleware('api')
  37. ->namespace($this->namespace)
  38. ->group(base_path('routes/api.php'));
  39. Route::prefix('admin')
  40. ->middleware('admin')
  41. ->namespace("App\Http\Controllers\Admin")
  42. ->group(base_path('routes/admin.php'));
  43. Route::middleware('web')
  44. ->namespace($this->namespace)
  45. ->group(base_path('routes/web.php'));
  46. });
  47. }
  48. /**
  49. * Configure the rate limiters for the application.
  50. *
  51. * @return void
  52. */
  53. protected function configureRateLimiting()
  54. {
  55. RateLimiter::for('api', function (Request $request) {
  56. return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());
  57. });
  58. }
  59. }