company = $company; } /** * Build the message. * * @return $this */ public function build() { App::setLocale($this->company->getLocale()); $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')) ->text('email.migration.existing_text') ->view('email.migration.existing'); } }