Sale Returns

Return Order Details : (Invoice Number : #{{ $sale->invoice_no }})

Customer name : {{ $sale->customer->name }}
Address : {{ $sale->customer->landmark }}
{{ $sale->customer->city_id->name_en ?? null }}
{{ $sale->customer->district->name_en ?? null }} {{ $sale->customer->district->province->name_en ?? null }}
Mobile : {{ $sale->customer->mobile }}
Mobile 2 : {{ $sale->customer->mobile_2 }}
Landline : {{ $sale->customer->landline }}
Email : {{ $sale->customer->email }}
Invoice No : {{ $sale->invoice_no }}
Waybill No : {{ $sale->waybill->waybill_no ?? 'N/A' }}
Delivery Status : {{ Str::title($sale->status) }}
Payment Status : {{ Str::title($sale->payment_status) }}
@foreach ($sale->saleItems as $item) @else N/A @endif @endforeach
Product Name SKU Attribute Quantity Unit Price Line Total
{{ $item->product->product_name }} {{ $item->product->sku }} @if ($item->product->attribute) {{ $item->product->attribute->attribute_name }} {{ $item->attribute_value }} {{ $item->qty }} {{ $item->product->unit->short_name }} {{ number_format($item->sale_unit_price, 2) }} {{ number_format($item->sale_line_total, 2) }}