$document, ]); } public function download(ShowDocumentRequest $request, Document $document) { return Storage::disk($document->disk)->download($document->url, $document->name); } public function publicDownload(string $document_hash) { MultiDB::documentFindAndSetDb($document_hash); $document = Document::where('hash', $document_hash)->firstOrFail(); $headers = []; if(request()->input('inline') == 'true') $headers = array_merge($headers, ['Content-Disposition' => 'inline']); return Storage::disk($document->disk)->download($document->url, $document->name, $headers); } public function downloadMultiple(DownloadMultipleDocumentsRequest $request) { $documents = Document::whereIn('id', $this->transformKeys($request->file_hash)) ->where('company_id', auth()->guard('contact')->user()->company_id) ->get(); $zipFile = new \PhpZip\ZipFile(); try{ foreach ($documents as $document) { $zipFile->addFile(TempFile::path($document->filePath()), $document->name); } $filename = now() . '-documents.zip'; $filepath = sys_get_temp_dir() . '/' . $filename; $zipFile->saveAsFile($filepath) // save the archive to a file ->close(); // close archive return response()->download($filepath, $filename)->deleteFileAfterSend(true); } catch(\PhpZip\Exception\ZipException $e){ // handle exception } finally{ $zipFile->close(); } } }