5
¿Cómo puedo usar romper o continuar dentro del bucle for en la plantilla Twig?
Intento usar un bucle simple, en mi código real, este bucle es más complejo y necesito breakesta iteración como: {% for post in posts %} {% if post.id == 10 %} {# break #} {% endif %} <h2>{{ post.heading }}</h2> {% endfor %} ¿Cómo puedo utilizar el comportamiento del breako …