Laravel 5.1 @can, how use OR clause

后端 未结 8 1329
日久生厌
日久生厌 2021-02-06 22:40

I did not find how to use a clause (OR, AND) in view with @can, for checking multiple abilities ...

I tried:

@can([\'permission1\', \'permission2\']) 
@c         


        
8条回答
  •  梦谈多话
    2021-02-06 23:21

    You can use the Gate facade:

    @if(Gate::check('permission1') || Gate::check('permission2'))
    
    @endif
    

提交回复
热议问题