@extends('admin.master') @section('content')

Return Details

Request #{{ $returnRequest->id }}

Back
@if(session('success'))
{{ session('success') }}
@endif
Return Information
Status {{ str_replace('_', ' ', $returnRequest->status) }}
Type {{ $returnRequest->type }}
Reason {{ $returnRequest->reason }}
Return Quantity {{ $returnRequest->return_qty }}
Unit Price ৳{{ number_format($returnRequest->unit_price, 2) }}
Refund Amount ৳{{ number_format($returnRequest->refund_amount, 2) }}
Customer Note {{ $returnRequest->customer_note ?: 'N/A' }}
Seller Note {{ $returnRequest->seller_note ?: 'N/A' }}
Admin Note {{ $returnRequest->admin_note ?: 'N/A' }}
Requested At {{ optional($returnRequest->requested_at)->format('d M Y h:i A') }}
Approved At {{ optional($returnRequest->approved_at)->format('d M Y h:i A') ?: 'N/A' }}
Received At {{ optional($returnRequest->received_at)->format('d M Y h:i A') ?: 'N/A' }}
Refunded At {{ optional($returnRequest->refunded_at)->format('d M Y h:i A') ?: 'N/A' }}
Linked Data

Order: {{ $returnRequest->order?->order_number ?? 'N/A' }}

Product: {{ $returnRequest->product?->name ?? 'N/A' }}

Shop: {{ $returnRequest->shop?->shop_name ?? 'N/A' }}

Seller: {{ $returnRequest->seller?->name ?? 'N/A' }}

Customer: {{ $returnRequest->user?->name ?? 'N/A' }}

Phone: {{ $returnRequest->user?->phone ?? 'N/A' }}

Update Status
@csrf @method('PATCH')
@endsection