如何在 make:auth 之后将登录方式改为用户名?

非常简单,修改两处就可以了。

第一处


LoginController 中添加:

public function username()
{
     return 'name';
}

'name' 对应 users 表的 name 字段,默认是 'email'.

第二处

修改 auth/login.blade.php,将:

@if( $errors->has('email')) {{ $errors->first('email') }} @endif

改为:

Name
@if( $errors->has('name') ) {{ $errors->first('name') }} @endif

即可。

你可能感兴趣的:(如何在 make:auth 之后将登录方式改为用户名?)