{{ $purchaseReturn->pr_code }}| Item & Batch | Qty | Price | Disc. | Tax | Subtotal |
|---|---|---|---|---|---|
|
{{ $item->product->name ?? 'N/A' }}
@php
$label = $item->variationType ? $item->variationType->name : null;
@endphp
@if($label && $label !== 'Default')
{{ $label }}
@endif
@if($item->batch)
Batch: {{ $item->batch->batch_no }}
@endif
Code: {{ $item->product->code ?? 'N/A' }}
|
{{ number_format($item->qty, 0) }} | Rs {{ number_format($item->unit_price, 2) }} | -{{ number_format($item->discount_amount, 2) }} | {{ number_format($item->tax_amount, 2) }} | Rs {{ number_format($item->total, 2) }} |