user = $user; $this->siteEmail = Settings::settingValue('site.main.email'); $this->siteTitle = Settings::settingValue('site.main.title'); } /** * Build the message. * * @return $this */ public function build() { return $this->from($this->siteEmail)->subject('Welcome to '.$this->siteTitle)->view('emails.welcome')->with(['username' => $this->user->username, 'site' => $this->siteTitle]); } }