stack/src/components/forms/category-form/category-form--raw.twig line 1

Open in your IDE?
  1. {% if props.items %}
  2.   {% for item in props.items %}
  3.     <div class="col-xxl-2 col-xl-3 col-lg-4 col-sm-6 col-12">
  4.       {% include "@Components/items/category-item/category-item.twig" with {props: item|merge({
  5.         id: props.id ~ "-" ~ loop.index0,
  6.       })} %}
  7.     </div>
  8.   {% endfor %}
  9. {% endif %}