$this->site->domain, 'status' => $this->deployment->status, ]); } public function toEmail(object $notifiable): MailMessage { return (new MailMessage) ->subject(__('Deployment Completed')) ->line('Deployment for site ['.$this->site->domain.'] has completed with status: '.$this->deployment->status); } public function toSlack(object $notifiable): string { return $this->rawText(); } public function toDiscord(object $notifiable): string { return $this->rawText(); } public function toTelegram(object $notifiable): string { return $this->rawText(); } }