| No | Nama Item | Unit | Qty | Harga Satuan | Total |
|---|---|---|---|---|---|
| {{ $loop->iteration }} |
{{ $item->item_name }}
{{ ucfirst($item->item_type) }} @if ($itemData) @if ($item->item_type === 'material') Kode: {{ $itemData->material_code ?? '-' }} @if($itemData->category) | Kategori: {{ $itemData->category }} @endif @else Kode: {{ $itemData->part_code ?? '-' }} @if($itemData->brand) | Brand: {{ $itemData->brand }} @endif @endif @endif |
{{ $item->unit ?? '-' }} | {{ number_format($item->quantity, 0, ',', '.') }} | Rp {{ number_format($item->unit_price, 0, ',', '.') }} | Rp {{ number_format($item->total_price, 0, ',', '.') }} |
| TOTAL PEMBELIAN: | Rp {{ number_format($purchase->total_amount, 0, ',', '.') }} | ||||