In a Project in Laravel, I want to upload an image.
Like this
<img class="logo" src="{{ asset('images/'. $pet->image) }}">
Since the images are in the public folder
But, tell me this
Failed to load resource: the server responded with a status of 404 (Not Found)
the image is, the path is fine, but for some reason it does not recognize the images folder,
images:1 GET http://127.0.0.1:8000/images 404 (Not Found)
should say http://127.0.0.1:8000/images/1.png
Why is this happening?