| Item | Batch # | Qty Returned | Rate | Gross | Discount | Net Credit |
|---|---|---|---|---|---|---|
| {{ $line->item->name }} | {{ $line->batch->code }} | {{ $line->qty }} | Rs {{ number_format($line->rate, 2) }} | Rs {{ number_format($line->gross, 2) }} | {{ collect(\App\Support\Discounts::tiers($line->category))->map(fn ($p) => $p.'%')->implode(' + ') ?: '-' }} | Rs {{ number_format($line->net, 2) }} |
| Total Credit | Rs {{ number_format($creditMemo->lines->sum('net'), 2) }} |