授权
介绍
除了提供内置的 身份验证 服务外,Laravel 还提供了一种简单的方法来授权用户对给定资源的操作。例如,即使用户已通过身份验证,他们也可能没有权限更新或删除由您的应用程序管理的某些 Eloquent 模型或数据库记录。Laravel 的授权功能提供了一种简单、有组织的方式来管理这些类型的授权检查。
Laravel 提供了两种主要的授权操作方式:网关 和 策略。可以将网关和策略视为路由和控制器。网关提供了一种简单的基于闭包的授权方法,而策略则像控制器一样,将逻辑围绕特定模型或资源进行分组。在本文件中,我们将首先探讨网关,然后再研究策略。
您不需要在构建应用程序时仅选择使用网关或策略。大多数应用程序可能会包含网关和策略的混合使用,这完全没问题!网关最适用于与任何模型或资源无关的操作,例如查看管理员仪表板。相反,当您希望为特定模型或资源授权操作时,应使用策略。
网关
编写网关
网关是学习 Laravel 授权功能基础知识的好方法;但是,在构建强大的 Laravel 应用程序时,您应该考虑使用 策略 来组织您的授权规则。
网关只是确定用户是否被授权执行给定操作的闭包。通常,网关在 App\Providers\AppServiceProvider
类的 boot
方法中使用 Gate
外观定义。网关始终将用户实例作为第一个参数,并且可以选择接收其他参数,例如相关的 Eloquent 模型。
在此示例中,我们将定义一个网关,以确定用户是否可以更新给定的 App\Models\Post
模型。该网关将通过比较用户的 id
和创建该帖子的用户的 user_id
来实现:
use App\Models\Post;
use App\Models\User;
use Illuminate\Support\Facades\Gate;
/**
* 启动任何应用程序服务。
*/
public function boot(): void
{
Gate::define('update-post', function (User $user, Post $post) {
return $user->id === $post->user_id;
});
}
2
3
4
5
6
7
8
9
10
11
12
13
像控制器一样,网关也可以使用类回调数组定义:
use App\Policies\PostPolicy;
use Illuminate\Support\Facades\Gate;
/**
* 启动任何应用程序服务。
*/
public function boot(): void
{
Gate::define('update-post', [PostPolicy::class, 'update']);
}
2
3
4
5
6
7
8
9
10
通过网关授权操作
要使用网关授权操作,您应该使用 Gate
外观提供的 allows
或 denies
方法。请注意,您不需要将当前经过身份验证的用户传递给这些方法。Laravel 将自动处理将用户传递到网关闭包中。通常,在执行需要授权的操作之前,您会在应用程序的控制器中调用网关授权方法:
<?php
namespace App\Http\Controllers;
use App\Http\Controllers\Controller;
use App\Models\Post;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Gate;
class PostController extends Controller
{
/**
* 更新给定的帖子。
*/
public function update(Request $request, Post $post): RedirectResponse
{
if (! Gate::allows('update-post', $post)) {
abort(403);
}
// 更新帖子...
return redirect('/posts');
}
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
如果您想确定除了当前经过身份验证的用户之外的用户是否被授权执行操作,您可以使用 Gate
外观上的 forUser
方法:
if (Gate::forUser($user)->allows('update-post', $post)) {
// 该用户可以更新帖子...
}
if (Gate::forUser($user)->denies('update-post', $post)) {
// 该用户无法更新帖子...
}
2
3
4
5
6
7
您可以使用 any
或 none
方法同时授权多个操作:
if (Gate::any(['update-post', 'delete-post'], $post)) {
// 该用户可以更新或删除帖子...
}
if (Gate::none(['update-post', 'delete-post'], $post)) {
// 该用户无法更新或删除帖子...
}
2
3
4
5
6
7
授权或抛出异常
如果您希望尝试授权操作并在用户不被允许执行给定操作时自动抛出 Illuminate\Auth\Access\AuthorizationException
,您可以使用 Gate
外观的 authorize
方法。AuthorizationException
的实例会被 Laravel 自动转换为 403 HTTP 响应:
Gate::authorize('update-post', $post);
// 操作已被授权...
2
3
提供额外上下文
用于授权能力的网关方法(allows
、denies
、check
、any
、none
、authorize
、can
、cannot
)和授权 Blade 指令(@can
、@cannot
、@canany
)可以接收一个数组作为它们的第二个参数。这些数组元素作为参数传递给网关闭包,并可用于在进行授权决策时提供额外上下文:
use App\Models\Category;
use App\Models\User;
use Illuminate\Support\Facades\Gate;
Gate::define('create-post', function (User $user, Category $category, bool $pinned) {
if (! $user->canPublishToGroup($category->group)) {
return false;
} elseif ($pinned && ! $user->canPinPosts()) {
return false;
}
return true;
});
if (Gate::check('create-post', [$category, $pinned])) {
// 该用户可以创建帖子...
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
网关响应
到目前为止,我们只检查了返回简单布尔值的网关。然而,有时您可能希望返回更详细的响应,包括错误消息。为此,您可以从网关返回一个 Illuminate\Auth\Access\Response
:
use App\Models\User;
use Illuminate\Auth\Access\Response;
use Illuminate\Support\Facades\Gate;
Gate::define('edit-settings', function (User $user) {
return $user->isAdmin
? Response::allow()
: Response::deny('您必须是管理员。');
});
2
3
4
5
6
7
8
9
即使您从网关返回授权响应,Gate::allows
方法仍将返回一个简单的布尔值;但是,您可以使用 Gate::inspect
方法获取网关返回的完整授权响应:
$response = Gate::inspect('edit-settings');
if ($response->allowed()) {
// 操作已被授权...
} else {
echo $response->message();
}
2
3
4
5
6
7
当使用 Gate::authorize
方法时,如果操作未被授权,授权响应中提供的错误消息将传播到 HTTP 响应中:
Gate::authorize('edit-settings');
// 操作已被授权...
2
3
自定义 HTTP 响应状态
当通过网关拒绝操作时,将返回 403
HTTP 响应;但是,有时返回替代 HTTP 状态代码可能很有用。您可以使用 Illuminate\Auth\Access\Response
类上的 denyWithStatus
静态构造函数自定义返回的失败授权检查的 HTTP 状态代码:
use App\Models\User;
use Illuminate\Auth\Access\Response;
use Illuminate\Support\Facades\Gate;
Gate::define('edit-settings', function (User $user) {
return $user->isAdmin
? Response::allow()
: Response::denyWithStatus(404);
});
2
3
4
5
6
7
8
9
由于通过 404
响应隐藏资源是 Web 应用程序的常见模式,因此提供了 denyAsNotFound
方法以方便使用:
use App\Models\User;
use Illuminate\Auth\Access\Response;
use Illuminate\Support\Facades\Gate;
Gate::define('edit-settings', function (User $user) {
return $user->isAdmin
? Response::allow()
: Response::denyAsNotFound();
});
2
3
4
5
6
7
8
9
拦截网关检查
有时,您可能希望授予特定用户所有权限。您可以使用 before
方法定义一个在所有其他授权检查之前运行的闭包:
use App\Models\User;
use Illuminate\Support\Facades\Gate;
Gate::before(function (User $user, string $ability) {
if ($user->isAdministrator()) {
return true;
}
});
2
3
4
5
6
7
8
如果 before
闭包返回非空结果,则该结果将被视为授权检查的结果。
您可以使用 after
方法定义一个在所有其他授权检查之后执行的闭包:
use App\Models\User;
Gate::after(function (User $user, string $ability, bool|null $result, mixed $arguments) {
if ($user->isAdministrator()) {
return true;
}
});
2
3
4
5
6
7
after
闭包返回的值不会覆盖授权检查的结果,除非网关或策略返回 null
。
内联授权
偶尔,您可能希望确定当前经过身份验证的用户是否被授权执行给定操作,而无需为该操作编写专门的网关。Laravel 允许您通过 Gate::allowIf
和 Gate::denyIf
方法执行这些类型的“内联”授权检查。内联授权不会执行任何定义的 "before" 或 "after" 授权钩子:
use App\Models\User;
use Illuminate\Support\Facades\Gate;
Gate::allowIf(fn (User $user) => $user->isAdministrator());
Gate::denyIf(fn (User $user) => $user->banned());
2
3
4
5
6
如果操作未被授权或当前没有用户经过身份验证,Laravel 将自动抛出 Illuminate\Auth\Access\AuthorizationException
异常。AuthorizationException
的实例会被 Laravel 的异常处理程序自动转换为 403 HTTP 响应。
创建策略
生成策略
策略是围绕特定模型或资源组织授权逻辑的类。例如,如果您的应用程序是一个博客,您可能会有一个 App\Models\Post
模型和一个相应的 App\Policies\PostPolicy
来授权用户操作,例如创建或更新帖子。
您可以使用 make:policy
Artisan 命令生成策略。生成的策略将放置在 app/Policies
目录中。如果该目录在您的应用程序中不存在,Laravel 将为您创建它:
php artisan make:policy PostPolicy
make:policy
命令将生成一个空的策略类。如果您希望生成一个包含与查看、创建、更新和删除资源相关的示例策略方法的类,可以在执行命令时提供 --model
选项:
php artisan make:policy PostPolicy --model=Post
注册策略
策略发现
默认情况下,只要模型和策略遵循标准的 Laravel 命名约定,Laravel 将自动发现策略。具体来说,策略必须位于包含您的模型的目录之上或同一目录中的 Policies
目录中。因此,例如,模型可以放置在 app/Models
目录中,而策略可以放置在 app/Policies
目录中。在这种情况下,Laravel 将检查 app/Models/Policies
然后是 app/Policies
中的策略。此外,策略名称必须与模型名称匹配并具有 Policy
后缀。因此,User
模型将对应于 UserPolicy
策略类。
如果您希望定义自己的策略发现逻辑,可以使用 Gate::guessPolicyNamesUsing
方法注册自定义策略发现回调。通常,此方法应在应用程序的 AppServiceProvider
的 boot
方法中调用:
use Illuminate\Support\Facades\Gate;
Gate::guessPolicyNamesUsing(function (string $modelClass) {
// 返回给定模型的策略类名称...
});
2
3
4
5
手动注册策略
使用 Gate
外观,您可以在应用程序的 AppServiceProvider
的 boot
方法中手动注册策略及其对应的模型:
use App\Models\Order;
use App\Policies\OrderPolicy;
use Illuminate\Support\Facades\Gate;
/**
* 启动任何应用程序服务。
*/
public function boot(): void
{
Gate::policy(Order::class, OrderPolicy::class);
}
2
3
4
5
6
7
8
9
10
11
编写策略
策略方法
一旦策略类被注册,您可以为其授权的每个操作添加方法。例如,让我们在 PostPolicy
中定义一个 update
方法,该方法确定给定的 App\Models\User
是否可以更新给定的 App\Models\Post
实例。
update
方法将接收一个 User
和一个 Post
实例作为其参数,并应返回 true
或 false
,指示用户是否被授权更新给定的 Post
。因此,在此示例中,我们将验证用户的 id
是否与帖子的 user_id
匹配:
<?php
namespace App\Policies;
use App\Models\Post;
use App\Models\User;
class PostPolicy
{
/**
* 确定给定用户是否可以更新给定帖子。
*/
public function update(User $user, Post $post): bool
{
return $user->id === $post->user_id;
}
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
您可以根据需要继续在策略上定义其他方法,以授权各种操作。例如,您可能会定义 view
或 delete
方法来授权与 Post
相关的各种操作,但请记住,您可以自由地为策略方法命名。
所有策略都通过 Laravel 服务容器 解析,允许您在策略的构造函数中类型提示任何所需的依赖项,以便自动注入。
策略响应
到目前为止,我们只检查了返回简单布尔值的策略方法。然而,有时您可能希望返回更详细的响应,包括错误消息。为此,您可以从策略方法返回一个 Illuminate\Auth\Access\Response
实例:
use App\Models\Post;
use App\Models\User;
use Illuminate\Auth\Access\Response;
/**
* 确定给定用户是否可以更新给定帖子。
*/
public function update(User $user, Post $post): Response
{
return $user->id === $post->user_id
? Response::allow()
: Response::deny('您不拥有此帖子。');
}
2
3
4
5
6
7
8
9
10
11
12
13
当从策略返回授权响应时,Gate::allows
方法仍将返回一个简单的布尔值;但是,您可以使用 Gate::inspect
方法获取网关返回的完整授权响应:
use Illuminate\Support\Facades\Gate;
$response = Gate::inspect('update', $post);
if ($response->allowed()) {
// 操作已被授权...
} else {
echo $response->message();
}
2
3
4
5
6
7
8
9
当使用 Gate::authorize
方法时,如果操作未被授权,授权响应中提供的错误消息将传播到 HTTP 响应中:
Gate::authorize('update', $post);
// 操作已被授权...
2
3
自定义 HTTP 响应状态
当通过策略方法拒绝操作时,将返回 403
HTTP 响应;但是,有时返回替代 HTTP 状态代码可能很有用。您可以使用 Illuminate\Auth\Access\Response
类上的 denyWithStatus
静态构造函数自定义返回的失败授权检查的 HTTP 状态代码:
use App\Models\Post;
use App\Models\User;
use Illuminate\Auth\Access\Response;
/**
* 确定给定用户是否可以更新给定帖子。
*/
public function update(User $user, Post $post): Response
{
return $user->id === $post->user_id
? Response::allow()
: Response::denyWithStatus(404);
}
2
3
4
5
6
7
8
9
10
11
12
13
由于通过 404
响应隐藏资源是 Web 应用程序的常见模式,因此提供了 denyAsNotFound
方法以方便使用:
use App\Models\Post;
use App\Models\User;
use Illuminate\Auth\Access\Response;
/**
* 确定给定用户是否可以更新给定帖子。
*/
public function update(User $user, Post $post): Response
{
return $user->id === $post->user_id
? Response::allow()
: Response::denyAsNotFound();
}
2
3
4
5
6
7
8
9
10
11
12
13
没有模型的方法
某些策略方法仅接收当前经过身份验证的用户的实例。这种情况在授权 create
操作时最为常见。例如,如果您正在创建一个博客,您可能希望确定用户是否被授权创建任何帖子。在这些情况下,您的策略方法应仅期望接收用户实例:
/**
* 确定给定用户是否可以创建帖子。
*/
public function create(User $user): bool
{
return $user->role == 'writer';
}
2
3
4
5
6
7
访客用户
默认情况下,如果传入的 HTTP 请求不是由经过身份验证的用户发起的,则所有网关和策略自动返回 false
。但是,您可以通过声明“可选”类型提示或为用户参数定义提供 null
默认值,允许这些授权检查通过到您的网关和策略:
<?php
namespace App\Policies;
use App\Models\Post;
use App\Models\User;
class PostPolicy
{
/**
* 确定给定用户是否可以更新给定帖子。
*/
public function update(?User $user, Post $post): bool
{
return $user?->id === $post->user_id;
}
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
策略过滤器
对于某些用户,您可能希望授权给定策略中的所有操作。为此,请在策略上定义一个 before
方法。before
方法将在任何其他方法之前执行,给您一个机会在实际调用预期策略方法之前授权操作。此功能通常用于授权应用程序管理员执行任何操作:
use App\Models\User;
/**
* 执行预授权检查。
*/
public function before(User $user, string $ability): bool|null
{
if ($user->isAdministrator()) {
return true;
}
return null;
}
2
3
4
5
6
7
8
9
10
11
12
13
如果您希望拒绝特定类型用户的所有授权检查,则可以从 before
方法返回 false
。如果返回 null
,则授权检查将降级到策略方法。
如果策略类没有包含与正在检查的能力名称匹配的方法,则不会调用策略类的 before
方法。
使用策略授权操作
通过用户模型
与您的 Laravel 应用程序一起包含的 App\Models\User
模型包含两个有用的方法来授权操作:can
和 cannot
。can
和 cannot
方法接收您希望授权的操作名称和相关模型。例如,让我们确定用户是否被授权更新给定的 App\Models\Post
模型。通常,这将在控制器方法中完成:
<?php
namespace App\Http\Controllers;
use App\Http\Controllers\Controller;
use App\Models\Post;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
class PostController extends Controller
{
/**
* 更新给定的帖子。
*/
public function update(Request $request, Post $post): RedirectResponse
{
if ($request->user()->cannot('update', $post)) {
abort(403);
}
// 更新帖子...
return redirect('/posts');
}
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
如果为给定模型 注册了策略,则 can
方法将自动调用相应的策略并返回布尔结果。如果未为模型注册策略,则 can
方法将尝试调用与给定操作名称匹配的基于闭包的网关。
不需要模型的操作
请记住,某些操作可能对应于不需要模型实例的策略方法,例如 create
。在这些情况下,您可以将类名传递给 can
方法。类名将用于确定在授权操作时使用哪个策略:
<?php
namespace App\Http\Controllers;
use App\Http\Controllers\Controller;
use App\Models\Post;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
class PostController extends Controller
{
/**
* 创建一个帖子。
*/
public function store(Request $request): RedirectResponse
{
if ($request->user()->cannot('create', Post::class)) {
abort(403);
}
// 创建帖子...
return redirect('/posts');
}
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
通过 Gate
外观
除了提供给 App\Models\User
模型的方法外,您始终可以通过 Gate
外观的 authorize
方法授权操作。
与 can
方法一样,此方法接受您希望授权的操作名称和相关模型。如果操作未被授权,则 authorize
方法将抛出 Illuminate\Auth\Access\AuthorizationException
异常,Laravel 异常处理程序将自动将其转换为带有 403 状态代码的 HTTP 响应:
<?php
namespace App\Http\Controllers;
use App\Http\Controllers\Controller;
use App\Models\Post;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Gate;
class PostController extends Controller
{
/**
* 更新给定的博客帖子。
*
* @throws \Illuminate\Auth\Access\AuthorizationException
*/
public function update(Request $request, Post $post): RedirectResponse
{
Gate::authorize('update', $post);
// 当前用户可以更新博客帖子...
return redirect('/posts');
}
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
不需要模型的操作
如前所述,某些策略方法(如 create
)不需要模型实例。在这些情况下,您应将类名传递给 authorize
方法。类名将用于确定在授权操作时使用哪个策略:
use App\Models\Post;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Gate;
/**
* 创建一个新的博客帖子。
*
* @throws \Illuminate\Auth\Access\AuthorizationException
*/
public function create(Request $request): RedirectResponse
{
Gate::authorize('create', Post::class);
// 当前用户可以创建博客帖子...
return redirect('/posts');
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
通过中间件
Laravel 包含一个中间件,可以在传入请求到达您的路由或控制器之前授权操作。默认情况下,Illuminate\Auth\Middleware\Authorize
中间件可以使用 can
中间件别名 附加到路由,该别名由 Laravel 自动注册。让我们探索一个使用 can
中间件授权用户可以更新帖子的方法的示例:
use App\Models\Post;
Route::put('/post/{post}', function (Post $post) {
// 当前用户可以更新帖子...
})->middleware('can:update,post');
2
3
4
5
在此示例中,我们将 can
中间件传递了两个参数。第一个是我们希望授权的操作名称,第二个是我们希望传递给策略方法的路由参数。在这种情况下,由于我们使用了 隐式模型绑定,将向策略方法传递一个 App\Models\Post
模型。如果用户未被授权执行给定操作,则中间件将返回带有 403 状态代码的 HTTP 响应。
为了方便起见,您还可以使用 can
方法将 can
中间件附加到路由:
use App\Models\Post;
Route::put('/post/{post}', function (Post $post) {
// 当前用户可以更新帖子...
})->can('update', 'post');
2
3
4
5
不需要模型的操作
同样,某些策略方法(如 create
)不需要模型实例。在这些情况下,您可以将类名传递给中间件。类名将用于确定在授权操作时使用哪个策略:
Route::post('/post', function () {
// 当前用户可以创建帖子...
})->middleware('can:create,App\Models\Post');
2
3
在字符串中定义整个类名的中间件可能会变得繁琐。因此,您可以选择使用 can
方法将 can
中间件附加到路由:
use App\Models\Post;
Route::post('/post', function () {
// 当前用户可以创建帖子...
})->can('create', Post::class);
2
3
4
5
通过 Blade 模板
在编写 Blade 模板时,您可能希望仅在用户被授权执行给定操作时显示页面的一部分。例如,您可能希望仅在用户可以更新帖子时显示博客帖子的更新表单。在这种情况下,您可以使用 @can
和 @cannot
指令:
@can('update', $post)
<!-- 当前用户可以更新帖子... -->
@elsecan('create', App\Models\Post::class)
<!-- 当前用户可以创建新帖子... -->
@else
<!-- ... -->
@endcan
@cannot('update', $post)
<!-- 当前用户无法更新帖子... -->
@elsecannot('create', App\Models\Post::class)
<!-- 当前用户无法创建新帖子... -->
@endcannot
2
3
4
5
6
7
8
9
10
11
12
13
这些指令是编写 @if
和 @unless
语句的便捷快捷方式。上面的 @can
和 @cannot
语句等同于以下语句:
@if (Auth::user()->can('update', $post))
<!-- 当前用户可以更新帖子... -->
@endif
@unless (Auth::user()->can('update', $post))
<!-- 当前用户无法更新帖子... -->
@endunless
2
3
4
5
6
7
您还可以确定用户是否被授权执行给定操作的任何操作。为此,请使用 @canany
指令:
@canany(['update', 'view', 'delete'], $post)
<!-- 当前用户可以更新、查看或删除帖子... -->
@elsecanany(['create'], \App\Models\Post::class)
<!-- 当前用户可以创建帖子... -->
@endcanany
2
3
4
5
不需要模型的操作
与大多数其他授权方法一样,如果操作不需要模型实例,您可以将类名传递给 @can
和 @cannot
指令:
@can('create', App\Models\Post::class)
<!-- 当前用户可以创建帖子... -->
@endcan
@cannot('create', App\Models\Post::class)
<!-- 当前用户无法创建帖子... -->
@endcannot
2
3
4
5
6
7
提供额外上下文
在使用策略授权操作时,您可以将数组作为第二个参数传递给各种授权函数和助手。数组中的第一个元素将用于确定应调用哪个策略,而数组中的其余元素将作为参数传递给策略方法,并可用于在进行授权决策时提供额外上下文。例如,考虑以下 PostPolicy
方法定义,其中包含一个额外的 $category
参数:
/**
* 确定给定用户是否可以更新给定帖子。
*/
public function update(User $user, Post $post, int $category): bool
{
return $user->id === $post->user_id &&
$user->canUpdateCategory($category);
}
2
3
4
5
6
7
8
在尝试确定经过身份验证的用户是否可以更新给定帖子时,我们可以像这样调用此策略方法:
/**
* 更新给定的博客帖子。
*
* @throws \Illuminate\Auth\Access\AuthorizationException
*/
public function update(Request $request, Post $post): RedirectResponse
{
Gate::authorize('update', [$post, $request->category]);
// 当前用户可以更新博客帖子...
return redirect('/posts');
}
2
3
4
5
6
7
8
9
10
11
12
13
授权与 Inertia
尽管授权必须始终在服务器上处理,但向前端应用程序提供授权数据以正确呈现应用程序的 UI 通常很方便。Laravel 并未定义将授权信息暴露给基于 Inertia 的前端的所需约定。
但是,如果您使用的是 Laravel 的 Inertia 基于 启动工具包,您的应用程序已经包含一个 HandleInertiaRequests
中间件。在此中间件的 share
方法中,您可以返回将提供给应用程序中所有 Inertia 页面共享的数据。此共享数据可以作为定义用户授权信息的方便位置:
<?php
namespace App\Http\Middleware;
use App\Models\Post;
use Illuminate\Http\Request;
use Inertia\Middleware;
class HandleInertiaRequests extends Middleware
{
// ...
/**
* 定义默认共享的属性。
*
* @return array<string, mixed>
*/
public function share(Request $request)
{
return [
...parent::share($request),
'auth' => [
'user' => $request->user(),
'permissions' => [
'post' => [
'create' => $request->user()->can('create', Post::class),
],
],
],
];
}
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32