subject("⛔ Server ({$this->server->name}) is unreachable after trying to connect to it 5 times"); $mail->view('emails.server-lost-connection', [ 'name' => $this->server->name, ]); return $mail; } public function toDiscord(): string { $message = "⛔ Server '{$this->server->name}' is unreachable after trying to connect to it 5 times. All automations & integrations are turned off! Please check your server! IMPORTANT: You have to validate your server again after you fix the issue."; return $message; } public function toTelegram(): array { return [ "message" => "⛔ Server '{$this->server->name}' is unreachable after trying to connect to it 5 times. All automations & integrations are turned off! Please check your server! IMPORTANT: You have to validate your server again after you fix the issue." ]; } }