Can we disable the laravel's throttle in a specific group of routes?
Here are my codes:
Route::group(['middleware' => ['auth:sanctum']], function () {
Route::get('/sample1', 'SampleController@sample');
// more routes here
});
I want to disable throttle limiter in all routes wrap inside Route::group
. Can we possibly do that?