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;