如何使用默认的auth控制器和中间件覆盖使用额外参数的Laravel 5.1 auth尝试?
假设我有一个状态为=active
或inactive
的额外字段。
我该如何编写该尝试方法?
答案 0 :(得分:5)
如documentation中所指定,您可以传递一组变量,其键是要在数据库中验证值的列。
<?php
namespace App\Http\Controllers;
use Auth;
use Illuminate\Routing\Controller;
class AuthController extends Controller {
public function authenticate(Request $request)
{
$attempt = Auth::attempt([
'email' => $request->get('email'),
'password' => $request->get('password'),
'active' => $request->get('active')
]);
if ($attempt) {
return redirect()->intended('dashboard');
}
}
}