1

我在我的 Laravel 项目中使用php artisan make:auth了命令,这就是我未更改的App\Models\User.php样子:

<?php

namespace App\Models;

use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable{

/**
 * The attributes that are mass assignable.
 *
 * @var array
 */
protected $fillable = [
    'name', 'email', 'password',
];

/**
 * The attributes excluded from the model's JSON form.
 *
 * @var array
 */
protected $hidden = [
    'password', 'remember_token',
];}

现在,根据 Entrusts 文档,我应该将User.php文件更改为以下内容:

<?php

use Zizaco\Entrust\Traits\EntrustUserTrait;

class User extends Eloquent
{
    use EntrustUserTrait; // add this trait to your user model

    ...
}

我想将 Laravel 内置的身份验证系统与 Entrust 用户角色一起使用。我怎样才能将这两者混合在一起工作?正如我所读到的,不可能使用多个扩展。有什么简单的解决方案吗?

4

1 回答 1

0

将您不变的课程App\Models\User放在use EntrustUserTrait;课程中,您会很高兴

于 2016-03-21T19:36:54.387 回答