Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

sunilwije's avatar

Unable to display images in laravel view blade

Why does the following tag does not display this image in laravel view blade <img src="{{ asset('storage/images/politician_images/' . $politician->image) }}" class="politician-img" alt="{{ $politician->name }}”>

$politician->image points to this image: -rw-r--r-- 1 www-data www-data 844364 Mar 7 04:40 1709786414.PNG

0 likes
3 replies
tykus's avatar

Where in the filesystem does that image file live?

Snapey's avatar

exactly what is in $politician->image

amitsolanki24_'s avatar

If you are accessing images from stoarge directory instard of public don't forget to run


php artisan stoarge:link

Please or to participate in this conversation.