← Back to list
Awami Laboratories
Credit Memo
{{ $creditMemo->customer->name }}
{{ collect([$creditMemo->customer->village, $creditMemo->customer->district, $creditMemo->customer->province])->filter()->implode(', ') }}
Reason: {{ $creditMemo->reason }}
Credit Memo #: {{ $creditMemo->code }}
Date: {{ $creditMemo->memo_date->format('Y-m-d') }}
Ref Invoice: {{ $creditMemo->invoice->code }}
@foreach ($creditMemo->lines as $line) @endforeach
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 CreditRs {{ number_format($creditMemo->lines->sum('net'), 2) }}