company = $company; $this->check_data = $check_data; } /** * Build the message. * * @return $this */ public function build() { $data['settings'] = $this->company->settings; $data['company'] = $this->company->fresh(); $data['whitelabel'] = $this->company->account->isPaid() ? true : false; $data['check_data'] = $this->check_data ?: ''; $data['logo'] = $this->company->present()->logo(); $result = $this->from(config('mail.from.address'), config('mail.from.name')) ->view('email.import.completed', $data); return $result; } }