@extends('admin.master') @section('content')
Manage all return requests
| # | Order | Product | Shop | Customer | Type | Qty | Refund | Status | Requested At | Action |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->id }} | {{ $item->order?->order_number ?? 'N/A' }} | {{ $item->product?->name ?? 'N/A' }} | {{ $item->shop?->shop_name ?? 'N/A' }} |
{{ $item->user?->name ?? 'N/A' }}
@if($item->user?->phone)
{{ $item->user?->phone }} @endif |
{{ $item->type }} | {{ $item->return_qty }} | ৳{{ number_format($item->refund_amount, 2) }} | {{ str_replace('_', ' ', $item->status) }} | {{ optional($item->requested_at)->format('d M Y h:i A') }} |
When customers request returns, they will appear here.