Return Information

Return Code:

{{ $return->return_code }}

Date:

{{ $return->created_at->format('M d, Y h:i A') }}

Status: {{ ucfirst($return->status) }}
Refund Status: {{ ucfirst($return->refund_status) }}

Sale Information

Sale Code:

{{ $return->sale->sale_code }}

Sale Date:

{{ $return->sale->created_at->format('M d, Y h:i A') }}

Customer:

{{ $return->sale->customer->name ?? 'Walk-in Customer' }}

Cashier:

{{ $return->cashier->name }}

Product Information

Product:

{{ $return->product->product_name }}

Product Code:

{{ $return->product->product_code }}

Product Type:

{{ $return->product->product_type }}

Unit:

{{ $return->product->unit }}

Return Details

Quantity Returned:

{{ $return->quantity_returned }} {{ $return->product->unit }}

Refund Amount:

${{ number_format($return->refund_amount, 2) }}

Reason for Return

{{ $return->reason }}

@if($return->admin_notes)

Admin Notes

{{ $return->admin_notes }}

@endif