subject("SSL Certificate Active: {$this->domain->host}") ->view('mail.notifications.ssl-provisioned', [ 'domain' => $this->domain, 'expiresAt' => $this->domain->ssl_expires_at, 'websiteUrl' => "https://{$this->domain->host}", ]); } public function toArray($notifiable): array { return [ 'title' => 'SSL Certificate Active', 'message' => "Your SSL certificate for {$this->domain->host} is now active. Your site is secure!", 'icon' => 'ssl', 'url' => route('user.domains.show', $this->domain), ]; } }