@extends('admin/layouts.master') @section('title', 'View Refund Request - Admin') @section('body')

{{ __('adminstaticword.OrderId') }} - {!! $refunds->order->order_id !!}

  • {{ __('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 }}
@if($refunds->bank_id == !NULL) @php $user_detail = App\UserBankDetail::where('id', $refunds->bank_id)->first() @endphp

{{ __('adminstaticword.BankDetail') }}

  • {{ __('adminstaticword.User') }}: {{ $user_detail->user->fname }}
  • {{ __('adminstaticword.AccountHolderName') }}: {{ $user_detail->account_holder_name }}
  • {{ __('adminstaticword.BankName') }}: {{ $user_detail->bank_name }}
  • {{ __('adminstaticword.IFCSCode') }}: {{ $user_detail->ifcs_code }}
  • {{ __('adminstaticword.AccountNumber') }}: {{ $user_detail->account_number }}
@endif
{{ csrf_field() }} {{method_field('PATCH')}} @if( $refunds->status==0)
  • status==1 ? 'checked' : '' }}>

  • @endif
    @endsection @section('scripts') @endsection