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);