@push('title') Process Sale Return - {{ $sale->invoice_no }} @endpush
Process Sale Return: {{ $sale->invoice_no }}
Back to Sales
@if($sale->sale_status == 4) @endif
Items to be Returned
@foreach($sale->items as $item) @endforeach
Product Batch Qty Sold Unit Price Total
{{ $item->product->name }} @if($item->variation)
{{ $item->variation->variationType->name }} @endif
{{ $item->batch->batch_no }} {{ number_format($item->qty, 0) }} {{ number_format($item->net_unit_price, 2) }} {{ number_format($item->total, 2) }}
Grand Total: LKR {{ number_format($sale->grand_total, 2) }}
Return Confirmation
{{ $sale->customer->name ?? 'Walk-in' }}
{{ $sale->created_at->format('M d, Y') }}
{{ $sale->warehouse->name }}
@csrf
Stock Restoration: All items listed in this invoice will be automatically added back to their respective batches.
@if ($sale->sale_status != 4) @else @endif