{{ $order->created_at->translatedFormat('d F Y • H:i') }}
Invoice: {{ $order->invoice_number }}
| Customer | {{ $order->metadata['customer_name'] ?? 'Pelanggan Umum' }} |
|---|---|
| Kasir | {{ $order->cashier?->name ?? '-' }} |
| Metode | {{ strtoupper($order->payment_method) }} |
| Produk | Qty | Subtotal |
|---|---|---|
|
{{ $item->product_name }}
SKU: {{ $item->sku ?? '-' }}
|
{{ $item->quantity }} | Rp{{ number_format($item->subtotal, 0, ',', '.') }} |
| Subtotal | Rp{{ number_format($order->subtotal_amount, 0, ',', '.') }} |
| Diskon | Rp{{ number_format($order->discount_amount, 0, ',', '.') }} |
| Biaya Tambahan | Rp{{ number_format(($order->shipping_cost + $order->service_fee), 0, ',', '.') }} |
| Tunai Diterima | Rp{{ number_format($cashReceived, 0, ',', '.') }} |
| Total | Rp{{ number_format($order->grand_total, 0, ',', '.') }} |
| Kembalian | Rp{{ number_format($cashChange, 0, ',', '.') }} |
Terima kasih atas kepercayaan Anda.
Barang yang sudah dibeli tidak dapat dikembalikan.
Dicetak: {{ now()->translatedFormat('d M Y, H:i:s') }} WIB