company->db); $this->settings = $this->company->settings; // create new zip object $zipFile = new \PhpZip\ZipFile(); $file_name = now()->addSeconds($this->company->timezone_offset())->format('Y-m-d-h-m-s').'_'.str_replace(' ', '_', trans('texts.quotes')).'.zip'; $invitations = QuoteInvitation::query()->with('quote')->whereIn('quote_id', $this->quote_ids)->get(); $invitation = $invitations->first(); $path = $invitation->contact->client->quote_filepath($invitation); try { foreach ($invitations as $invitation) { $file = (new \App\Jobs\Entity\CreateRawPdf($invitation))->handle(); $zipFile->addFromString($invitation->quote->numberFormatter() . '.pdf', $file); } Storage::put($path.$file_name, $zipFile->outputAsString()); $nmo = new NinjaMailerObject(); $nmo->mailable = new DownloadQuotes(Storage::url($path.$file_name), $this->company); $nmo->to_user = $this->user; $nmo->settings = $this->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("zip build failed: ".$e->getMessage()); } finally { $zipFile->close(); } } }