我正在学习laravel,我想创建一个登录/注册
模块。为此,我在控制台中使用了The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().
。一切都很好。但我不想使用php artisan make:auth
登录。
这是email-field
。
User::model
我希望用户使用他的RUT(个人识别码)来访问系统。但我一直收到有关电子邮件的错误。
我在导入 use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $table = 'login_usuarios';
protected $fillable = [
'rut', 'contrasena'
];
public $timestamps = false;
}
中搜索没有运气
希望你理解。谢谢
答案 0 :(得分:1)
in
app/Http/AuthController.php
尝试添加
protected $username = 'username';