我目前正在使用Laravel 5.5,因为您知道Laravel默认通过电子邮件提供身份验证,但在我的情况下,我想更改其行为并允许用户使用手机号码登录。那么我必须在哪里进行修改?
答案 0 :(得分:4)
来自the docs:
默认情况下,Laravel使用电子邮件字段进行身份验证。如果您想自定义此选项,可以在
LoginController
上定义用户名方法:
public function username()
{
return 'mobile_number';
}
https://laravel.com/docs/5.5/authentication#included-authenticating
答案 1 :(得分:3)
的LoginController
public function username()
{
return 'mobile';
}
也可以验证
protected function validateLogin(Request $request)
{
$this->validate($request, [
$this->username() => 'required|string',
'password' => 'required|string',
]);
}