begin order form with registration
This commit is contained in:
35
resources/views/Shop/Baskets/partials/basketTotal.blade.php
Normal file
35
resources/views/Shop/Baskets/partials/basketTotal.blade.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<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">{{ ($basket['total'] ?? 0) + 5 }}</span> €
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user