我刚开始使用 Laravel 5.4 中的政策来处理我的授权。我一直在关注官方文档并创建了PostPolicy。
<?php
namespace App\Policies;
use App\User;
use App\Post;
use Illuminate\Auth\Access\HandlesAuthorization;
class PostPolicy
{
use HandlesAuthorization;
public function delete(User $user, Post $post)
{
return false;
//return $user->id === $post->user_id;
}
}
我的目标是停止使用政策删除帖子的能力。 我目前仍然可以删除,但无法找到实现这些策略规则的方法。
答案 0 :(得分:2)
您需要授权操作。例如,你可以这样做:
if ($user->can('delete', $post)) {
或在控制器中:
$this->authorize('delete', $post);
https://laravel.com/docs/5.5/authorization#authorizing-actions-using-policies