2025-07-23 15:32:00 +07:00

23 lines
828 B
PHP

<div class="offcanvas offcanvas-end" tabindex="-1" id="cartSidebar">
<div class="offcanvas-header">
<h5 class="offcanvas-title">Keranjang Saya</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas"></button>
</div>
<div class="offcanvas-body" id="cartListContainer">
<!-- Daftar pesanan akan muncul di sini -->
<div class="mt-auto border-top pt-3">
<div class="d-flex justify-content-between align-items-center">
<strong>Total:</strong>
<strong id="cartTotal">Rp 0</strong>
</div>
</div>
</div>
<div class="border-top p-3">
<div class="d-flex justify-content-between mb-2">
<strong>Total Bayar:</strong>
<strong id="cartTotal">Rp 0</strong>
</div>
<a class="btn btn-success w-100" href="/checkout">Checkout</a>
</div>
</div>