xiguage

160 经验值

npm install webpack webpack-dev-server --save-dev 这样 然后执行 node_modules/.bin/webpack-dev-server --inline --hot 就可以了

public function hasRole($role){

    if(is_string($role))
    {
        return $this->roles->contains('name',$role);
    }
    return $role->intersect($this->roles)->count();
}

这里的$this->role 是哪里来的?