0

My all files path is /storage/app/public/applicants/pdf/[all-files-here]. So, how can I download it from the folder.

I have done this:

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

return response()->download($file);
OMi Shah
  • 5,768
  • 3
  • 25
  • 34
Kishan
  • 1
  • 4
  • what is the issue with this? – OMi Shah Nov 26 '22 at 06:47
  • Also, possible dups: https://stackoverflow.com/questions/43315857/cannot-download-file-from-storage-folder-in-laravel-5-4 and https://stackoverflow.com/questions/70142831/how-to-download-file-from-storage-app-folder-in-laravel-8 – OMi Shah Nov 26 '22 at 07:04

1 Answers1

-1
return Storage::download('file.pdf', $name, $headers);
Anarkali_
  • 1
  • 2