How can I setup image intervention to upload images to my cloud storage setup in L5 filesystem config?
Most applications running on DigitalOcean will need some additional cloud if they are hosting images, so we're talking about a relatively large market (laravel applications hosting images, running on i.e. DO).
You take the result of encode() and save it to any storage you like.
$data = (string) Image::make('public/foo.png')->encode('jpg', 75);
Storage::put('file.jpg', $data);
Most helpful comment
You take the result of encode() and save it to any storage you like.