custom/plugins/KmPitchPrint/src/Resources/views/storefront/page/checkout/cart/index.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/checkout/cart/index.html.twig' %}
  2.     {% block page_checkout_cart_table_items %}
  3.         
  4.         {# for lineItem in page.cart.lineItems| sort((a,b)=> a.referencedId <=> b.referencedId) #}
  5.         {% for lineItem in page.cart.lineItems %}
  6.             {% block page_checkout_cart_table_item %}
  7.                 {% block page_checkout_item %}
  8.                     {% sw_include '@Storefront/storefront/page/checkout/checkout-item.html.twig' %}
  9.                 {% endblock %}
  10.             {% endblock %}
  11.         {% endfor %}
  12.     {% endblock %}