W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
Gates 是用來決定用戶是否授權(quán)執(zhí)行給予動作的一個閉包函數(shù),并且典型的做法就是在 App\Providers\AuthServiceProvider
中使用 Gate
來定義。Gates 總是接收一個用戶實例作為第一個參數(shù),并且可以接收可選參數(shù),比如相關(guān)的 Eloquent 模型:
/**
* 注冊任意用戶認證、用戶授權(quán)服務(wù)
*
* @return void
*/
public function boot()
{
$this->registerPolicies();
Gate::define('edit-settings', function ($user) {
return $user->isAdmin;
});
Gate::define('update-post', function ($user, $post) {
return $user->id === $post->user_id;
});
}
也可以使用類回調(diào)數(shù)組來定義門,例如控制器:
use App\Policies\PostPolicy;
/**
* 注冊任意用戶認證、用戶授權(quán)服務(wù)
*
* @return void
*/
public function boot()
{
$this->registerPolicies();
Gate::define('update-post', [PostPolicy::class, 'update']);
}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: