I'm saving image file in storage folder, its working fine
$ext = "jpg";
$imageConvert = \Image::make($image->getRealPath())->stream($ext, 60);
$img = rand(10, 100) . '_piku.' . $ext;
\Storage::put('public/piku/' . $img, $imageConvert);
But I want to store images in direct public/piku folder instead of storage/app/public/piku
So how can I do that?
I have tried all these: click here But these methods not work for case of intervention stream.