Action Required: Return Request

Hello Admin,

A customer has submitted a request to return item(s) from order #{{ $order->payment_order_id }}. Please review the details below.

{{-- Section for Items to Return --}}

Items to Return

@php $return_id = $items_to_return->first()->return_id ?? null; @endphp @if ($return_id)

Return ID: {{ $return_id }}

@endif @forelse($items_to_return as $item)

{{ $item->product_name }}

Quantity to Return: {{ $item->quantity }}

Reason: {{ ucfirst(str_replace('_', ' ', $item->reason)) }}

Customer Comments:

{{ $item->description ?? 'No comments provided.' }}
@if ($item->product_image)

Attachment: An image was uploaded by the customer (view in admin panel).

@endif
@empty

No specific items were listed in this return request.

@endforelse {{-- Section for Customer Details --}}

Customer Details

Name: {{ $order->user->name }}
Email: {{ $order->user->email }}
Phone: {{ $order->user->mobile }}

Shipping Address

{{ $order->shippingAddress->line1 }}
@if ($order->shippingAddress->line2) {{ $order->shippingAddress->line2 }}
@endif {{ $order->shippingAddress->city }}, {{ $order->shippingAddress->state }} {{ $order->shippingAddress->pincode }}
{{ $order->shippingAddress->country }}