$this->server->name, 'progress' => url('/servers/'.$this->server->id), ]); } public function toEmail(object $notifiable): MailMessage { return (new MailMessage) ->subject(__('Server installation started!')) ->line('Your server\'s ['.$this->server->name.'] installation has been started.') ->line("This may take several minutes depending on many things like your server's internet speed.") ->line('As soon as it finishes, We will notify you through this channel.') ->line('You can check the progress live on your dashboard.') ->action('Installation Progress', url('/servers/'.$this->server->id)); } }