FileUpload load image from /storage/... instead of /public/...

Hello,

I am using FileUpload input to store an image in a "image" directory. The problem is : FileUpload try to find the image in /storage/image/... but the image is stored in /public/image.

Thanks for your help!
Solution
Sounds like your disks aren’t configured directly. Technically it should be stored in storage/images and you serve them publicly by running ‘php artisan storage:link’ this creates a symlink from public to the actual storage.
Was this page helpful?