Laravel Framework 5.6.38
我正在尝试将默认的用户名身份验证检查从“电子邮件”更改为“ id”, 因此,我将username()方法放入用户模型文件中,以覆盖默认的username方法
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'password','id'
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
public function username()
{
return 'id';
}
}
它不适合我。除非我从laravel供应商文件中更改它 Illuminate \ Foundation \ Auth \ AuthenticatesUsers.php
/**
* Get the login username to be used by the controller.
*
* @return string
*/
public function username()
{
return 'kocid';
}
登录现在可以正常工作,但是当我运行composer update时,该文件将恢复为默认设置,因此我需要一种解决方案,以使用User模型成功覆盖此方法。
答案 0 :(得分:2)
根据文档,https://laravel.com/docs/5.6/authentication#authentication-quickstart...you应该在您的LoginController
public function username()
{
return 'id';
}