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