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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/header/actions/cart-widget.html.twig' %}
  2. {% block layout_header_actions_cart_widget %}
  3.     {% set counter = 0 %}{% for item in page.cart.lineItems.elements %}{% set counter = counter + item.quantity %}{% endfor %}
  4.     <div class="cart-button">
  5.         <span class="badge-primary">{{ counter }}</span>
  6.         <span class="header-cart-icon">{% sw_icon 'basket' %}</span>
  7.         <span class="header-cart-total d-none d-sm-inline-block">{{ page.cart.price.positionPrice|currency }}</span>
  8.     </div>
  9. {% endblock %}