server = (object) $server; } /** * Get the notification's delivery channels. */ public function via(): array { return ['mail']; } /** * Get the mail representation of the notification. */ public function toMail(): MailMessage { return (new MailMessage()) ->error() ->greeting('Hello ' . $this->server->user . '.') ->line('You have been removed as a subuser for the following server.') ->line('Server Name: ' . $this->server->name) ->action('Visit Panel', route('index')); } }