Laravel 4.2 |验证尝试忽略活动状态

时间:2016-07-14 14:41:05

标签: php laravel authentication

我使用laravel 4.2 auth系统,使用下一个命令尝试auth:

d

问题在于我尝试使用在数据库中标记为非活动状态的用户登录 - 响应为Auth::attempt(['email' => Input::get('email'), 'password' => Input::get('password'), 'active' => true], true)

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

我不得不修改Auth ::尝试一段时间,以便在我以前的工作中使用Google ID作为内部项目。

基本上,您需要扩展尝试方法,以便将您的活动状态添加到尝试检查中。

Here's my solution to the problem