company = $company; } /** * Build the message. * * @return $this */ public function build() { $this->settings = $this->company->settings; $this->logo = $this->company->present()->logo(); $this->title = ctrans('texts.max_companies'); $this->message = ctrans('texts.max_companies_desc'); $this->whitelabel = $this->company->account->isPaid(); return $this->from(config('mail.from.address'), config('mail.from.name')) ->view('email.migration.max_companies'); } }