|
Invoice # {{ $invoice->kode_invoice }}
|
| Tanggal: {{ date('d F Y', strtotime($invoice->tanggal)) }} |
PELANGGAN: {{ $invoice->pelanggan->nama ?? '-' }} {{ $invoice->pelanggan->no_hp ?? '-' }} |
| Produk | Kuantitas | Harga Satuan | Subtotal |
|---|---|---|---|
| {{ $item->product->nama ?? '-' }} | {{ $item->kuantitas }} | Rp {{ number_format($item->harga_satuan, 0, ',', '.') }} | Rp {{ number_format($item->subtotal, 0, ',', '.') }} |
Total Rp {{ number_format($invoice->total, 0, ',', '.') }}