@extends('admin.layouts.master') @section('title','View Refund Request') @section('maincontent') @component('components.breadcumb',['secondaryactive' => 'active']) @slot('heading') {{ __('Refund Order') }} @endslot @slot('menu1') {{ __('View Refund Request') }} @endslot @endcomponent
{{ __('adminstaticword.OrderId') }} - {!! $refunds->order->order_id !!}

{{ $refunds->user->fname }} {{ $refunds->user->lname }}

{{ $refunds->user->email }}

{{ __('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)

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