-
I am trying the password reset feature and I need to be able to try it a lot of time / minutes without any checks. How can i disable this check [in local only] |
Beta Was this translation helpful? Give feedback.
Answered by
promatik
Aug 9, 2023
Replies: 1 comment
-
Hey @realtebo! To temporarily disable throttle locally you can comment the throttle line on Route::post('/login', [AuthController::class, 'login'])->withoutMiddleware('throttle:120,1'); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
pxpm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @realtebo!
To temporarily disable throttle locally you can comment the throttle line on
App\Http\Kernel.php
, or you can do it for specific routes;