isDisabled(); } /** * Determine whether the user can delete the model. */ public function delete(User $user, Currency $currency): bool { return false; } public function deleteAny(User $user): bool { return false; } /** * Determine whether the user can restore the model. */ public function restore(User $user, Currency $currency): bool { return false; } /** * Determine whether the user can permanently delete the model. */ public function forceDelete(User $user, Currency $currency): bool { return false; } }