我的用户迁移是:
$table->increments('id');
$table->integer('matricula')->unique();
$table->timestamps();
用户通过“matricula”登录,我的应用程序中不需要密码,但模型用户“强制”使用密码:
class User extends Eloquent implements UserInterface, RemindableInterface {
...
public function getAuthPassword()
{
return $this->password;
}
没有密码如何认证?