I\'ve been experimenting using the new Flysystem integration with Laravel 5. I am storing \'localised\' paths to the DB, and getting the Storage facade to complete the path
this work for me in 2020 at laravel 7
$image_resize = Image::make($image->getRealPath()); $image_resize->resize(800,600); $image_resize->save(Storage::disk('episodes')->path('') . $imgname);
so you can use it like this
echo Storage::disk('public')->path('');