admin; } /** * Determine whether the user can delete the model. */ public function delete(User $user, User $model): bool { return $this->administer($user) && $user->id !== $model->id; } }