company->db); $settings = $this->company->settings; $zipFile = new \PhpZip\ZipFile(); $file_name = now()->addSeconds($this->company->timezone_offset())->format('Y-m-d-h-m-s').'_'.str_replace(' ', '_', trans('texts.credits')).'.zip'; $invitations = CreditInvitation::query()->with('credit')->whereIn('credit_id', $this->credit_ids)->get(); $invitation = $invitations->first(); $path = $invitation->contact->client->credit_filepath($invitation); try { foreach ($invitations as $invitation) { $file = (new \App\Jobs\Entity\CreateRawPdf($invitation))->handle(); $zipFile->addFromString($invitation->credit->numberFormatter() . '.pdf', $file); } Storage::put($path.$file_name, $zipFile->outputAsString()); $nmo = new NinjaMailerObject(); $nmo->mailable = new DownloadCredits(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) { // handle exception } finally { $zipFile->close(); } } }