Aug 13, 2025
2
Level 7
Can't incraese rate limit of child route
In bootstrap/app.php, i've applied a global web throttle of 50/1m, but for specific route group, I want to set different throttle, I've tested using with prefix throttle:300,1,another, but because I'm setting web throttle in bootstrap/app it also increases that:
bootstrap/app.php
$middleware->web(append: [
'throttle:50,1',
]);
routes/web.php
Route::prefix('test')->middleware('throttle:300,1')->group();
what should I do?
Please or to participate in this conversation.