// Products controller use IlluminateSupportFacadesStorage; $image = $request->file('image'); $filePath = 'images/' . $image->getClientOriginalName(); Storage::disk('s3')->put($filePath, file_get_contents($image), 'public');