{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% set Carts = get_all_carts() %}
{% set totalPrice = get_carts_total_price() %}
{% set totalQuantity = get_carts_total_quantity() %}
<div class="ec-cartNavi ec-headerRole__cart">
<div class="ec-cartNavi__cart">
<span class="ec-cartNavi__badge">{{ totalQuantity|number_format }}</span>
<img src="{{ asset('assets/img/common/cart.svg') }}" alt="カート" width="28" height="29" loading="lazy">
</div>
<div class="ec-cartNavi__label">
<div class="ec-cartNavi__price">{{ totalPrice|price }}<span>(税込)</span></div>
</div>
{% if is_granted('ROLE_USER') %}
<div class="ec-cartNavi__action">
<a class="ec-cartNavi__action__btn" href="{{ url('cart') }}">{{ 'カートへ進む'|trans }}</a>
</div>
{% else %}
<div class="ec-cartNavi__action">
<button class="ec-cartNavi__action__btn modal-toggle" data-modal="loginModal">カートへ進む</button>
</div>
{% endif %}
</div>