@include('purchase::partials.styles')
| # | Product | Unit | Qty | Received | Rate | Disc% | Tax% | Total |
|---|---|---|---|---|---|---|---|---|
| {{ $idx + 1 }} |
@if($imageUrl)
{{ $item->product->name ?? 'N/A' }}
|
{{ $item->unit->short_name ?? $item->unit->name ?? '-' }} | {{ number_format($item->qty, 3) }} | {{ number_format($item->received_qty, 3) }} | ₹{{ number_format($item->rate, 2) }} | {{ number_format($item->discount_percent, 2) }}% | {{ number_format($item->tax_percent, 2) }}% | ₹{{ number_format($item->total, 2) }} |
| No items found | ||||||||
{{ $po->terms_conditions }}
{{ $po->notes }}
No terms or notes
@endif