subject("Domain Verified: {$this->domain->host} is now active!") ->view('mail.notifications.domain-verified', [ 'domain' => $this->domain, 'manageUrl' => route('user.domains.show', $this->domain), 'emailUrl' => route('user.mailboxes.index'), ]); } public function toArray($notifiable): array { return [ 'title' => 'Domain Verified', 'message' => "Your domain {$this->domain->host} has been verified and is now active.", 'icon' => 'success', 'url' => route('user.domains.show', $this->domain), ]; } }