app/Plugin/PinpointSaleDx/Resource/template/default/Cart/index_ex.twig line 1

Open in your IDE?
  1. {% set pinpointSaleIndex = 0 %}
  2. {% for CartIndex,Cart in Carts %}
  3.     {% for CartItem in Cart.CartItems %}
  4.         {% set ProductClass = CartItem.ProductClass %}
  5.         {{ include('@PinpointSaleDx/cart_parts.twig', {'CartItem': CartItem}, ignore_missing=true) }}
  6.         {% set pinpointSaleIndex = pinpointSaleIndex + 1 %}
  7.     {% endfor %}
  8. {% endfor %}