Disable rate limiter in Laravel?

In app/Http/Kernel.php Laravel has a default throttle limit for all api routes.

protected $middlewareGroups = [
    ...
    'api' => [
        'throttle:60,1',
    ],
];

Comment or increase it.

Leave a Comment