This commit is contained in:
ludo
2025-01-03 03:46:45 +01:00
parent b3fbfc38e7
commit befaa40b48
44 changed files with 442 additions and 165 deletions

View File

@@ -14,7 +14,7 @@
</div>
<div class="col-6 text-right font-weight-bold">
<span id="basket-total">
{{ $basket['total_taxed'] ?? 0 }}
{{ number_format($basket['total_taxed'] ?? 0, 2, '.') }}
</span>
</div>
</div>
@@ -25,7 +25,7 @@
</div>
<div class="col-6 text-right font-weight-bold">
<span id="shipping">
{{ $basket['shipping'] }}
{{ number_format($basket['shipping'], 2, '.') }}
</span>
</div>
</div>
@@ -38,7 +38,7 @@
</div>
<div class="col-6 text-right">
<span id="basket-total-shipped">
{{ $basket['total_shipped'] ?? 0 }}
{{ number_format($basket['total_shipped'] ?? 0, 2, '.') }}
</span>
</div>
</div>