我使用的是Laravel的Auth Throttling功能,它运行正常,但我想知道如何清除该电子邮件的登录尝试? http://laravel.com/docs/5.1/authentication#authentication-throttling
目前锁定时间为"登录尝试次数过多。请在5418秒再试一次"
答案 0 :(得分:6)
在控制台php artisan cache:clear
中运行此功能,您就可以了
答案 1 :(得分:1)
在包含ThrottlesLogins
特征的控制器中,创建一个新的路由处理程序方法:
public function clearThrottle(Request $request) {
$this->clearLoginAttempts($request);
// Forward elsewhere or display a view
}