我在我的登录控制器中使用它。 如果要在小时前销毁,如何在登录控制器中销毁它。
protected $maxAttempts = 2;
protected $decayMinutes = 60;
在我的登录控制器中,我使用了它,但是不起作用。
public function clearThrottle(Request $request)
{
$this->clearLoginAttempts($request);
return view('nova::auth.login');
}