在Laravel 5.6中找不到Trait'App \ HasRoles'错误

时间:2018-10-02 20:14:45

标签: php laravel permissions roles

我正在尝试使用laravel 5.6的角色权限系统

当我尝试使用默认auth(php artisan make:auth)注册时,出现此错误

  

“ Symfony \组件\调试\异常\ FatalErrorException   (E_UNKNOWN)未发现特征'App \ HasRoles'

这是我的模型user.php

<?php

namespace App;

use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
    use Notifiable;
    use HasRoles;

    protected $guard_name = 'web'; 

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

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'password', 'remember_token',
    ];
}

5 个答案:

答案 0 :(得分:3)

我猜您正在使用Spatie Laravel许可包。

如果是这样,则需要像这样导入类:

use Spatie\Permission\Traits\HasRoles;

答案 1 :(得分:2)

尝试一下。导入HasRoles包,如下所示;

use Spatie\Permission\Traits\HasRoles;

答案 2 :(得分:2)

运行此命令

作曲家安装

答案 3 :(得分:0)

该特征未导入使用。如果像我一样使用PhpStorm,请单击HasRoles,然后按住enter键并点按import,然后按enter键选择var globalTimelines = {}; // yes, this is global.. :( function createTimeline(containerId, rawItems,rawGroups, options) { var items = new vis.DataSet(rawItems); var groupss = new vis.DataSet(rawGroups); var container = document.getElementById(containerId); var newTimeline = new vis.Timeline(container, items, groups, options); globalTimelines[containerId] = newTimeline; } $(document).ready(function(){ createTimeline("mytimeline1", ....); createTimeline("mytimeline2", ....); }); $(document).on("click", ".setTL1", function(){ alert("I want to change mytimeline1 settings by .setOptions()"); var timeline = globalTimelines['mytimeline1']; timeline.setOptions({ ... }); }); ,然后将导入特征。您可以使用这些快捷方式进行其他导入,例如,导入模型。

答案 4 :(得分:0)

composer 需要 spatie/laravel-permission 安装这个 composer 然后它就可以工作了。因为你已经复制了 Laravel 文件但不是全部所以安装这个。它适用于我的项目