@extends('layouts.admin') @section('title', 'Refund Management') @section('header', 'Refund Management') @php $currencyDecimals = App\Models\AppSetting::currencyDecimals(); $currencyStep = number_format(1 / pow(10, $currencyDecimals), $currencyDecimals, '.', ''); @endphp @php $currencySymbol = App\Models\AppSetting::getValue('currency_symbol', '₹'); @endphp @section('content')
Track refund requests and create refunds against orders.
| Order | Customer | Store | Amount | Status | Reason | Date |
|---|---|---|---|---|---|---|
| #{{ $order->order_number }} | {{ $order->customer?->name ?? $order->customer_name }} | {{ $order->restaurant?->name ?? 'N/A' }} | {{ $currencySymbol }}{{ number_format($order->refund_amount ?? 0, App\Models\AppSetting::currencyDecimals()) }} | {{ ucfirst($order->refund_status) }} | {{ $order->refund_reason }} | {{ $order->updated_at?->format('d M Y h:i A') }} |
| No refunds found | ||||||