<stoelting-mini-cart
:visible="visible"
:price-total-label="'Grand Total'"
:price-subtotal-label="'Products in cart: %count%'"
:remove-item-label="'Remove'"
>
<template v-slot:header>
<div v-if="justAdded" class="d-flex align-items-center border-bottom border-pearl p-2 p-lg-2 p-md-2 mini-cart-heading">
<small class="d-flex align-items-center text-success text-uppercase letter-spacing-2 font-weight-bold">
{{ block('successIcon', 'svg-icons/svg-icons.html.twig') }}
{{ 'Added to cart' | trans }}
</small>
</div>
<div v-if="!justAdded" class="d-flex align-items-center border-pearl p-2 p-lg-2 p-md-2 mini-cart-heading">
</div>
</template>
<template v-slot:footer>
{% if app.user %}
{% if "order_quoute_" not in routeName %}
<a href="{{ path('cart', {'division': division, 'action': 'index'}) }}" class="btn btn-primary mini-cart-btn-place-oder">
{{ 'mini-cart.place.order' | trans }}
</a>
{% else %}
<span></span>
{% endif %}
{% else %}
<a href="{{ path('cart', {'division': division, 'action': 'index'}) }}" class="btn btn-primary mini-cart-btn-place-oder">
{{ 'mini-cart.login.checkout' | trans }}
</a>
{% endif %}
</template>
</stoelting-mini-cart>