i have a list of objects which has an image as an attribute(name of the image as a string) , i am looping this list in twig and i try to display the image in an img html tag which takes it's source of image through a symfony 'asset' path . this the twig part of code :
{% for offre in listeoffres %}
<li>
<img src="{{asset('images/')}} {{ offre.nomImage }}" alt="">
</li>
<li>
{{ offre.titre }}
</li>
{% endfor %}
Notes :
The database contains correct image names and the images already exist in the correct folder (
web/images
)The '{{ offre.nomImage }}' displays correctly the image name that it's in the database (with the extension)
When i display
{{asset('images/')}} {{ offre.nomImage }}
it shows:/myproject/web/images/ image.jpg