file_path = $file_path; $this->company = $company; } /** * Build the message. */ public function build() { return $this->from(config('mail.from.address'), config('mail.from.name')) ->subject(ctrans('texts.download_files')) ->view('email.admin.download_invoices', [ 'url' => $this->file_path, 'logo' => $this->company->present()->logo, 'whitelabel' => $this->company->account->isPaid() ? true : false, 'settings' => $this->company->settings, 'greeting' => $this->company->present()->name(), ]); } }