我正在使用laravel 5.0。我正在使用Entrust用户权限。 当我尝试执行以下功能时
Entrust::can('customers-views')
我收到这样的错误。这是什么原因。我该如何解决这个问题?
Class 'App\Http\Controllers\Entrust' not found
我可以使用Entrust:可以在控制器中运行吗?
答案 0 :(得分:3)
你能尝试吗
if(videoAngle == 180)
{
videoBox.rotation = 180
}
else if(videoAngle == 90)
{
videoBox.rotation = -90;
}
else if(videoAngle == -90)
{
videoBox.rotation = 90;
}
或在文件顶部添加\Entrust::can('customers-views')
行。