我在 Laravel 7 工作
我根据需要调整loginController;最大尝试次数和衰减分钟数
public function maxAttempts()
{
return General::first()->max_attempts;
}
public function decayMinutes()
{
return General::first()->decay_minutes;
}
如何禁止用户超过 maxAttempts
示例 => 最大尝试次数 = 4
我想禁止用户尝试失败 5 次
$user->is_block = true
动漫人物
绝地无双