{{ $purchaseOrder->po_code }}| Item & Variation | Ordered | Received | Price | Subtotal |
|---|---|---|---|---|
|
{{ $item->product->name ?? 'N/A' }}
@php
$label = $item->productVariation->variationType->name ?? null;
@endphp
@if($label && !in_array(strtolower($label), ['default', 'n/a']))
{{ $label }}
@endif
Code: {{ $item->product->code ?? 'N/A' }}
|
{{ floatval($item->qty) }} | {{ floatval($item->received_qty) }} | Rs {{ number_format($item->unit_price, 2) }} | Rs {{ number_format($item->qty * $item->unit_price, 2) }} |