@extends('admin/layouts.master')
@section('title', 'View Refund Request - Admin')
@section('body')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
- {{ __('adminstaticword.User') }}: {{ $refunds->user->fname }} {{ $refunds->user->lname }}
- {{ __('adminstaticword.OrderId') }}: {{ $refunds->order->order_id }}
- {{ __('adminstaticword.Course') }}: {{ $refunds->courses->title }}
- {{ __('adminstaticword.PaymentMethod') }}: {{ $refunds->payment_method }}
- {{ __('adminstaticword.TotalAmount') }}: {{ $refunds->total_amount }}
- {{ __('adminstaticword.Reason') }}: {{ $refunds->reason }}
- {{ __('adminstaticword.Detail') }}: {{ $refunds->detail }}
@endsection
@section('scripts')
@endsection