app/template/bravers/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 Carts = get_all_carts() %}
  9. {% set totalPrice = get_carts_total_price() %}
  10. {% set totalQuantity = get_carts_total_quantity() %}
  11. <div class="ec-cartNavi ec-headerRole__cart">
  12.     <div class="ec-cartNavi__cart">
  13.         <span class="ec-cartNavi__badge">{{ totalQuantity|number_format }}</span>
  14.         <img src="{{ asset('assets/img/common/cart.svg') }}" alt="カート" width="28" height="29" loading="lazy">
  15.     </div>
  16.     <div class="ec-cartNavi__label">
  17.         <div class="ec-cartNavi__price">{{ totalPrice|price }}<span>(税込)</span></div>
  18.     </div>
  19.     {% if is_granted('ROLE_USER') %}
  20.         <div class="ec-cartNavi__action">
  21.             <a class="ec-cartNavi__action__btn" href="{{ url('cart') }}">{{ 'カートへ進む'|trans }}</a>
  22.         </div>
  23.     {% else %}
  24.         <div class="ec-cartNavi__action">
  25.             <button class="ec-cartNavi__action__btn modal-toggle" data-modal="loginModal">カートへ進む</button>
  26.         </div>
  27.     {% endif %}
  28. </div>