user()->is($user); } /** * Determine whether the user can delete the model. */ public function delete(User $user, Chirp $chirp): bool { return $this->update($user, $chirp); } /** * Determine whether the user can restore the model. */ public function restore(User $user, Chirp $chirp): bool { return false; } /** * Determine whether the user can permanently delete the model. */ public function forceDelete(User $user, Chirp $chirp): bool { return false; } }