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