我正在使用Auth
来验证用户身份。但使用users
表之外的其他表。
每当我使用这个控制器功能。它显示表users
不存在。
public function authenticate(Request $request)
{
$input=$request->all();
$password=$input['password'];
$name=$input['name'];
if (Auth::attempt(['Name' => $name, 'Password' => $password]) ){
return redirect()->intended('/quiz/home');
} else
{
return view('quiz.login')->with('message','Error logging in!');
}
}
答案 0 :(得分:0)
here你已经得到了答案
// in the config/auth.php chage
'model' => 'App\User',
'table' => 'users',
// to...
'model' => 'App\Administrator',
'table' => 'administrators',