{{ $receipt->remarks }}
{{ $receipt->rejection_reason }}
| # | Product | Location | Quantity | Delivered |
|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $item->product->name ?? $item->description }}
{{ $item->product->sku ?? '' }}
@if($item->variation)
Variant: {{ $item->variation->name }}
@endif
|
@if($item->rack)
Rack: {{ $item->rack->name }}
@endif
@if($item->lot)
Lot: {{ $item->lot->lot_no }}
@endif
@if(!$item->rack && !$item->lot)
-
@endif
|
{{ number_format($item->quantity, 2) }} {{ $item->unit->short_name ?? 'PCS' }} | {{ number_format($item->delivered_qty, 2) }} {{ $item->unit->short_name ?? 'PCS' }} |
| Total: | {{ number_format($receipt->items->sum('quantity'), 2) }} | {{ number_format($receipt->items->sum('delivered_qty'), 2) }} | ||