@extends('admin/layouts.master') @section('title', 'View Refund Request - Admin') @section('body') @if ($errors->any())
@endif

{{ __('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 }}
{{ csrf_field() }} {{method_field('PATCH')}} @if( $refunds->status==0)
  • status==1 ? 'checked' : '' }}>

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