[ 'throttle:60,1', 'bindings', ], ]; /** * The application's route middleware. * These middleware may be assigned to groups or used individually. * * @var array */ protected $routeMiddleware = [ 'auth' => Authenticate::class, 'auth.basic' => AuthenticateWithBasicAuth::class, 'auth.token' => AuthToken::class, 'bindings' => SubstituteBindings::class, 'can' => Authorize::class, 'guest' => RedirectIfAuthenticated::class, 'throttle' => ThrottleRequests::class ]; }