From b91a348042a91cda96c672259631e0a02d92d9c4 Mon Sep 17 00:00:00 2001 From: Flavio Barachino Date: Tue, 21 Oct 2025 18:25:09 +0200 Subject: [PATCH] corretto il recupero del path --- app/Http/Controllers/GenDocController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/GenDocController.php b/app/Http/Controllers/GenDocController.php index b40dcfb..477a390 100644 --- a/app/Http/Controllers/GenDocController.php +++ b/app/Http/Controllers/GenDocController.php @@ -37,7 +37,7 @@ class GenDocController extends Controller public function downloadFile(Request $request){ $doc = Gendoc::find($request->id); - dd($doc->filename); + // dd($doc->filename); return response()->download($doc->filename); }