Files
opensem/resources/views/Shop/Baskets/partials/basketTotal.blade.php
Ludovic CANDELLIER 01f56204b7 fixes
2022-07-04 00:35:43 +02:00

35 lines
1.0 KiB
PHP

<div class="row mb-3">
<div class="col-6 text-uppercase">
Tarif appliqué :
</div>
<div class="col-6 text-right font-weight-bold">
<span id="basket_sale_channel">
{{ $sale_channel['name'] ?? null }}
</span>
</div>
</div>
<div class="row mb-3">
<div class="col-6">
<span id="basket-count">{{ $basket['count'] ?? 0 }}</span> ARTICLES
</div>
<div class="col-6 text-right font-weight-bold">
<span id="basket-total">{{ $basket['total'] ?? 0 }}</span>
</div>
</div>
<div class="row mb-3">
<div class="col-6">
LIVRAISON
</div>
<div class="col-6 text-right font-weight-bold">
<span id="shipping">5</span>
</div>
</div>
<hr>
<div class="row mb-3 font-weight-bold" style="font-size: 1.6em;">
<div class="col-6">
TOTAL TTC
</div>
<div class="col-6 text-right">
<span id="basket-total-shipped">{{ App\Repositories\Core\User\ShopCart::fixDecimal(($basket['total'] ?? 0) + 5) }}</span>
</div>
</div>