app/template/default/Block/cart.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% set totalQuantity = get_carts_total_quantity() %}
  9. <div class="ec-cartNaviWrap">
  10.     <div class="ec-cartNavi">
  11.         <a href="{{ url('cart') }}">
  12.           <img src="{{ asset('assets/img/common/icon_cart_sp.png') }}" width="30">
  13.           <span class="ec-cartNavi__badge">{{ totalQuantity|number_format }}</span>
  14.         </a>
  15.     </div>
  16. </div>