Files
opensem/resources/views/Shop/layout/partials/header-basket.blade.php

16 lines
513 B
PHP

<a href="{{ route('Shop.Basket.basket') }}" class="text-white">
<button type="button" class="btn green-dark p-0">
<img src="/img/header/basket.svg" width="36px">
<span class="ml-2 badge bg-yellow green-dark">
<span id="count-basket">{{ \App\Repositories\Core\User\ShopCart::getTotalQuantity() }}</span>
Articles
</span>
<span class="ml-2 badge bg-yellow green-dark">
<span id="total-basket">{{ \App\Repositories\Core\User\ShopCart::getTotal() }}</span>
TTC
</span>
</button>
</a>