diff --git a/app/Service/ImageService.php b/app/Service/ImageService.php index 35b8e6f5..67e33fd4 100644 --- a/app/Service/ImageService.php +++ b/app/Service/ImageService.php @@ -46,8 +46,8 @@ class ImageService */ protected function storeOriginalImage($imageFile) { - dd($imageFile); $path = 'images/original/' . Str::random(40) . '.' . $imageFile->getClientOriginalExtension(); + dd([$imageFile, $path]); Storage::put($path, file_get_contents($imageFile)); return $path; }