Selamat datang kembali di aplikasi laundryku
Alamat Pengiriman
Detail Pesanan
@foreach ($items as $item)| Subtotal Pesanan | Rp{{ number_format($order->items->sum('total'), 0, ',', '.') }} |
| Subtotal Pengiriman | Rp{{ number_format(0, 0, ',', '.') }} |
| Biaya Layanan | Rp{{ number_format(0, 0, ',', '.') }} |
| Total Harga | Rp{{ number_format($order->items->sum('total'), 0, ',', '.') }} |
| Metode Pembayaran | {{ $order->payment_method }} |
Pembayaran
| No | Invoice | Date | Harga | Bayar | Sisa Pembayaran |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->invoice }} | {{ $item->date }} | Rp {{ number_format($harga, 0, ',', '.') }} | Rp {{ number_format($item->amount, 0, ',', '.') }} | Rp {{ number_format($harga, 0, ',', '.') }} |
| Total dibayarkan | Rp {{number_format($payment->sum('amount'), 0,',', '.')}} | ||||
| Harus dibayarkan | Rp {{number_format($order->amount, 0, ',', '.')}} | ||||
| Sisa Pembayaran | Rp {{number_format(($order->amount - $payment->sum('amount')), 0, ',', '.') }} | ||||