In addition to @can
Blade directive, did you know you can check multiple permissions at once with @canany
directive?
1@canany(['update', 'view', 'delete'], $post)2 // The current user can update, view, or delete the post3@elsecanany(['create'], \App\Post::class)4 // The current user can create a post5@endcanany