templates/front/main/header/mobile/top_menu_session_cart.html.twig line 1

Open in your IDE?
  1. <li>
  2.     <a href="{{ path('app_shared_cart_index') }}" class="mobile-cart-link">
  3.         <span class="btn btn_cart"><i class="fa fa-shopping-cart"></i></span>
  4.         {% set cart = app.session.get('cart') %}
  5.         {% if cart is not null and cart['products'] is defined %}
  6.             {% set cart_count = cart['products'] | length %}
  7.         {% else %}
  8.             {% set cart_count = 0 %}
  9.         {% endif %}
  10.         <span class="number_cart">{{ cart_count }}</span>
  11.     </a>
  12. </li>