is_admin; } public function destroy(User $currentUser, User $userToDestroy): bool { return $currentUser->is_admin && $currentUser->id !== $userToDestroy->id; } }