Quantcast
Channel: Grafikart | Derniers Sujets du forum
Viewing all articles
Browse latest Browse all 1542

Variable "tags" does not exist.

$
0
0

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 !


Viewing all articles
Browse latest Browse all 1542

Trending Articles