Answers for "for loop conditions twig"

1

how to for loop twig

{% for i in 0..10 %}
    * {{ i }}
{% endfor %}
Posted by: Guest on April-29-2020
0

twig conditions

{% if product.stock > 10 %}
   Available
{% elseif product.stock > 0 %}
   Only {{ product.stock }} left!
{% else %}
   Sold-out!
{% endif %}
Posted by: Guest on March-22-2021

Browse Popular Code Answers by Language