From 3d8b6a7ac53d67341a3db41568b5bcfd34d5cc4b Mon Sep 17 00:00:00 2001 From: lq Date: Tue, 17 Jun 2025 14:59:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=86=E7=A6=BB=E9=A6=96=E9=A1=B5=E5=92=8C?= =?UTF-8?q?=E8=AF=A6=E6=83=85=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Service/ImageService.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Service/ImageService.php b/app/Service/ImageService.php index 59e23892..35b8e6f5 100644 --- a/app/Service/ImageService.php +++ b/app/Service/ImageService.php @@ -46,6 +46,7 @@ class ImageService */ protected function storeOriginalImage($imageFile) { + dd($imageFile); $path = 'images/original/' . Str::random(40) . '.' . $imageFile->getClientOriginalExtension(); Storage::put($path, file_get_contents($imageFile)); return $path;