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