Laravel 8 通过 Blade 模板
当编写 Blade
模板时,可能希望仅在用户被授权执行给定操作时才显示页面的一部分。比如,你可能希望仅在用户可以实际更新帖子时显示博客帖子的更新表单。在这样情况下,你可以使用 @can
和 @cannot
等一系列指令:
@can('update', $post)
<!-- 当前用户可以更新文章 -->
@elsecan('create', App\Models\Post::class)
<!-- 当前用户可以创建新文章 -->
@endcan
@cannot('update', $post)
<!-- 当前用户不可以更新文章-->
@elsecannot('create', App\Models\Post::class)
<!--当前用户不可以创建新文章-->
@endcannot
这些指令是编写 @if
和 @unless
语句的快捷方法。 @can
和 @cannot
语句分别转化为以下语句:
@if (Auth::user()->can('update', $post))
<!-- 当前用户可以更新文章 -->
@endif
@unless (Auth::user()->can('update', $post))
<!-- 当前用户不可以更新文章 -->
@endunless
您还可以确定用户是否具有来自给定能力列表的任何授权能力。 要实现这一点,请使用 @canany
指令:
@canany(['update', 'view', 'delete'], $post)
// 当前用户可以更新、查看、删除文章
@elsecanany(['create'], \App\Models\::class)
// 当前用户可以创建新文章
@endcanany