-
Notifications
You must be signed in to change notification settings - Fork 80
Description
Hi,
Since this commit 2f8140d all thumbnail urls have stopped working.
The issue seems to be that the images were previously stored in the public directory public/thumbnails/...
and so were served without any problems. Now they are stored under storage/public/thumbnails/...
.
I do have the symlink set up to map storage/public/
to public/storage/
so if I add "storage" to the url it loads the image but the url returned from the thumbnail method doesn't contain it so the image isn't loaded.
e.g
URL returned from the thumbnail method that 404s:
http://laravel.test/thumbnails/images/300-300/image.jpeg
URL with "storage" added that works:
http://laravel.test/storage/thumbnails/images/300-300/image.jpeg
How are you handling this in your projects? Is there a new step missing from the readme?
Thanks