company->db); $settings = $this->company->settings; // create new zip object $zipFile = new \PhpZip\ZipFile(); $file_name = date('Y-m-d').'_'.str_replace(' ', '_', trans('texts.invoices')).'.zip'; $invitation = $this->invoices->first()->invitations->first(); $path = $this->invoices->first()->client->invoice_filepath($invitation); try { foreach ($this->invoices as $invoice) { if ($invoice->client->getSetting('enable_e_invoice')) { $xml = $invoice->service()->getEInvoice(); $zipFile->addFromString($invoice->getFileName("xml"), $xml); } $file = $invoice->service()->getRawInvoicePdf(); $zip_file_name = $invoice->getFileName(); $zipFile->addFromString($zip_file_name, $file); } Storage::put($path.$file_name, $zipFile->outputAsString()); $nmo = new NinjaMailerObject; $nmo->mailable = new DownloadInvoices(Storage::url($path.$file_name), $this->company); $nmo->to_user = $this->user; $nmo->settings = $settings; $nmo->company = $this->company; NinjaMailerJob::dispatch($nmo); UnlinkFile::dispatch(config('filesystems.default'), $path.$file_name)->delay(now()->addHours(1)); } catch (\PhpZip\Exception\ZipException $e) { nlog('could not make zip => '.$e->getMessage()); } finally { $zipFile->close(); } } }