username = (string) $user->username; $this->site = (string) config('app.name'); $this->siteEmail = (string) config('mail.from.address'); $this->preheader = "Welcome to {$this->site} — your account is ready."; } public function build(): static { return $this->from($this->siteEmail) ->brandedSubject('Welcome to '.$this->site) ->markdown('emails.markdown.welcome', [ 'username' => $this->username, 'site' => $this->site, 'preheader' => $this->preheader, ]); } }