Search code examples
laravelimage

Image is not displaying in Laravel


I am trying to see image in this link http://127.0.0.1:8000/images/files/Safety/1738837934.png in my Laravel application. But I am getting 404 error while I try to see the image. I placed my images inside /public/storage/files/Safety/ folder.

I can see some images but some images are not visible.


Solution

  • You've put the file in one place and are trying to access it in another place.

    The public directory is web root for your Laravel application, so if you've put the file in /public/storage/files/Safety/1738837934.png, then it would be accessible at http://127.0.0.1:8000/storage/files/Safety/1738837934.png.