evaluate($this->failureNotification, [ 'notification' => Notification::make() ->danger() ->title($this->getFailureNotificationTitle()), ]); if (filled($notification?->getTitle())) { $notification->send(); } return $this; } public function failureNotification(Notification | Closure | null $notification): static { $this->failureNotification = $notification; return $this; } /** * @deprecated Use `failureNotificationTitle()` instead. */ public function failureNotificationMessage(string | Closure | null $message): static { return $this->failureNotificationTitle($message); } public function failureNotificationTitle(string | Closure | null $title): static { $this->failureNotificationTitle = $title; return $this; } public function sendSuccessNotification(): static { $notification = $this->evaluate($this->successNotification, [ 'notification' => Notification::make() ->success() ->title($this->getSuccessNotificationTitle()), ]); if (filled($notification?->getTitle())) { $notification->send(); } return $this; } public function successNotification(Notification | Closure | null $notification): static { $this->successNotification = $notification; return $this; } /** * @deprecated Use `successNotificationTitle()` instead. */ public function successNotificationMessage(string | Closure | null $message): static { return $this->successNotificationTitle($message); } public function successNotificationTitle(string | Closure | null $title): static { $this->successNotificationTitle = $title; return $this; } public function getSuccessNotificationTitle(): ?string { return $this->evaluate($this->successNotificationTitle); } public function getFailureNotificationTitle(): ?string { return $this->evaluate($this->failureNotificationTitle); } }