Bonjour
Je ne comprends pourquoi l'erreur est que la variable "tags" n'existe pas, pourtant je l'ai bien défini dans le controller comme ceci :
public function tagsliste(TagRepository $tagRepository): Response {
return $this->render('post/_all_tags.html.twig', ['tags' => $tagRepository->findAll()]);
}
post/_all_tags.html.twig :
<div class="tags-list">
{% for tag in tags %}
<a href="#">{{ tag.name }}</a>
{% endfor %}
</div><!-- .tags-list -->
Je vous remercie de votre aide !