Watermark
Bakulpulley.com Logo
Invoice # {{ $invoice->kode_invoice }}
Tanggal: {{ date('d F Y', strtotime($invoice->tanggal)) }} PELANGGAN:
{{ $invoice->pelanggan->nama ?? '-' }}
{{ $invoice->pelanggan->no_hp ?? '-' }}
@foreach ($invoice->items as $item) @endforeach
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, ',', '.') }}