目前,我有以下三种状态:Afor Active、DforDisabled和Lfor Locked。我已经设置了$maxAttempts = 3,$decayMinutes = 10并将代码添加到了,LoginController以便只有活跃用户才能登录。
protected function credentials(Request $request)
{
return array_merge($request->only($this->username(),
'password', 'site_id'), ['status' => 'A']);
}
但是,我不知道如何在用户连续3次使用错误密码登录后自动将状态从 更改为Active。Locked目前,观点如下。
慕妹3146593