@if (empty($cart))
Keranjang kosong. Silakan kembali ke menu untuk memilih produk.
@else
@foreach ($cart as $item)
@if(isset($item['product_id']) && isset($item['name']) && isset($item['price']) && isset($item['quantity']))
-
{{ $item['name'] }}
{{ $item['quantity'] }} x Rp {{ number_format($item['price'], 0, ',', '.') }}
Rp {{ number_format($item['price'] * $item['quantity'], 0, ',', '.') }}
@endif
@endforeach
Subtotal:
Rp {{ number_format($subtotal, 0, ',', '.') }}
@if ($appliedPromotion)
Diskon ({{ $appliedPromotion->code }}):
- Rp {{ number_format($discountAmount, 0, ',', '.') }}
Setelah Diskon:
Rp {{ number_format(max(0, $subtotal - $discountAmount), 0, ',', '.') }}
@endif
Pajak (10%):
Rp {{ number_format($taxAmount, 0, ',', '.') }}
Biaya Layanan (5%):
Rp {{ number_format($serviceFee, 0, ',', '.') }}
Total Pembayaran:
Rp {{ number_format($totalAmount, 0, ',', '.') }}
@endif