exception = $exception; $this->content = $content; $this->company = $company; } /** * Build the message. * * @return $this */ public function build() { return $this ->from(config('mail.from.address'), config('mail.from.name')) ->view('email.migration.failed', [ 'logo' => $this->company->present()->logo(), 'settings' => $this->company->settings, 'is_system' => $this->is_system, ]); } }