custom/plugins/theme/src/Resources/views/storefront/layout/header/actions/cart-widget.html.twig line 1

Open in your IDE?
  1. {% block layout_header_actions_cart_widget %}
  2.     <span class="header-cart-icon">
  3.         {% sw_icon 'bag' %}
  4.     </span>
  5.     {% if page.cart.lineItems|length > 0 %}
  6.         {% set amount = 0 %}
  7.         {% for lineItem in page.cart.lineItems %}
  8.             {% set amount = amount + lineItem.quantity %}
  9.         {% endfor %}
  10.        
  11.         {% if amount > 0 %}
  12.             <span class="badge {{ bgClass }}-primary header-cart-badge">{{ amount }}</span>
  13.         {% endif %}
  14.     {% endif %}
  15. {% endblock %}