firstName = $firstName; $this->heading = trans('user::mail.welcome', ['name' => $firstName]); $this->text = trans('user::mail.account_created'); } /** * Build the message. * * @return $this */ public function build() { return $this->subject(trans('user::mail.welcome', ['name' => $this->firstName])) ->view("emails.{$this->getViewName()}", [ 'logo' => File::findOrNew(setting('storefront_mail_logo'))->path, ]); } private function getViewName() { return 'text' . (is_rtl() ? '_rtl' : ''); } }