如何使用laravel从存储文件夹下载pdf?

u7up0aaq  于 2022-12-01  发布在  其他
关注(0)|答案(1)|浏览(215)

我的所有文件路径是/storage/app/public/applicants/pdf/[all-files-here]。那么,我如何从文件夹下载它呢?
我已经这样做了:

$file = Storage::disk('public')->get('/applicants/' . 'selection_test_result_1669368177.pdf');

return response()->download($file);
guicsvcw

guicsvcw1#

return Storage::download('file.pdf', $name, $headers);

相关问题