report->find($id); $file = File::findOrFail($id); $file_path = public_path('storage/' . $file->path_name); return response()->download($file_path, $file->label, ['Content-Type:' . $file->mime_type]); } }