subject = $subject; $this->text = $text; } /** * Build the message. * * @return $this */ public function build() { if ($this->text instanceof MailMessage) { return $this->markdown('vendor.notifications.email', $this->text->data()); } return $this->markdown('emails.notification-channel-message', [ 'subject' => $this->subject, 'text' => $this->text, ]); } }