user_id === $user->id; } /** * Determine whether the user can delete the model. * * @return \Illuminate\Auth\Access\Response|bool */ public function delete(User $user, OrangePill $orangePill): bool { return false; } /** * Determine whether the user can restore the model. * * @return \Illuminate\Auth\Access\Response|bool */ public function restore(User $user, OrangePill $orangePill): bool { return false; } /** * Determine whether the user can permanently delete the model. * * @return \Illuminate\Auth\Access\Response|bool */ public function forceDelete(User $user, OrangePill $orangePill): bool { return false; } }