Is it a good idea to put logic in model policies in laravel
So far the only thing I've seen devs putting in model policies is simple statements like this: public function update(User $user, Post $post): bool { return $user->id === $post->user_id; } In my app I have an admin user that should…