custom/plugins/LoyxxSeminar/src/Resources/views/storefront/component/product/card/box-standard.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/box-standard.html.twig' %}
  2. {% block component_product_box_name %}
  3.     {{ parent() }}
  4.     <div class="h-20px d-none">
  5.         {% if product.translated.customFields.loyxx_seminar %}
  6.             {% sw_icon 'sofa' style { size: 'xs'} %}
  7.             {{ "loyxx.labels.freeSeats"| trans |sw_sanitize }} :  {% if product.availableStock > 0 %} {{ product.availableStock }} {% if product.packUnit %} {{ product.packUnit }}{% endif %} {% else %} 0 {% endif %}
  8.         {% endif %}
  9.     </div>
  10. {% endblock %}