所以我想用Laravel Authorization
。對於here我沒有以下內容:Laravel:Gate :: denies not working
- Laravel更新爲* .1.19
- 創建的策略目錄中app.php
我創建了一個政策定義
//Allow users of type 'users`
public function view(User $user)
{
dd('he was here'); // Not coming here
return $user->user_type === 'user';
}
在控制器我所做的:
if (Gate::denies('view')) {
dd('Sorry Bud not allowed');
}
事情是,它總是進入塊'Sorry Bud not allowed'
。
我是否缺少一些步驟或其他內容?
你有沒有想出解決辦法?我被困在同樣的事情上。 – Shane
@Shane我跳過了這個 – Volatil3
@Shane我被困在同樣的事情上。你有沒有設法讓它工作? – YahyaE