Bonjour,
Je ne comprend pas, quand j'ajoute un lien à mon template j'obtiens cette erreur :
An exception has been thrown during the rendering of a template ("Unable to generate a URL for the named route "presentation" as such route does not exist.") in ANEcommerceBundle

efault:produits\layout\produits.html.twig at line 17.
Voici le lien que je rajoute :
<a class="btn btn-primary" href="{{ path('presentation') }}">Plus d'infos</a>
Dès que j'enlève ce lien, tout refonctionne.
Voici mon fichier routing.yml
1 2 3 4 5 6 7
| produits:
path: /
defaults: { _controller: ANEcommerceBundle:Produits:produits }
presentation:
path: /produit
defaults: { _controller: ANEcommerceBundle:Produits:presentation } |
J'ai regardé la docs et je ne comprend pas pourquoi ça bloque. Aidez-moi svp ! Merci
Partager