Glide unfortunately I could not use it without using the storage, That is why I decided to try with Intervention Image Cache, and it seems to work but...
I just managed to get a link like:
/thumbs/133x124?src=upload/news/news_110cfe3247815927e0624116215f5066.jpg
How do I get an address like:
/thumbs/upload/news/133x124-news_110cfe3247815927e0624116215f5066.jpg
I would like to remove this "?src="
My route code is as follows:
Route::get('thumbs/{imgw}x{imgh}/', function ($imgw,$imgh)
{
$src = \Input::get('src', 1);
$width = $imgw;
$height = $imgh;
$cacheimage = \Image::cache(function($image) use ($src,$width,$height) {
return $image->make($src)->resize($width,$height);
}, 1, false);
return Response::make($cacheimage, 200, array('Content-Type' => 'image/jpeg'));
});