isAdmin(); } public function create(User $user): bool { return $user->isAdmin(); } public function update(User $user, User $target): bool { return $user->isAdmin(); } public function delete(User $user, User $target): bool { return $user->isAdmin() && $user->id !== $target->id; } }