user = User::find($userId); } /** * @return $this * @throws \Exception */ public function build() { return $this->from(Settings::settingValue('site.main.email'))->subject('User Account Deleted')->view('emails.accountDelete')->with(['username' => $this->user->username, 'site' => Settings::settingValue('site.main.title')]); } }