@extends('admin.layouts.app') @section('panel')
@lang('Withdraw Via') {{ __(@$withdrawal->method->name) }}
  • @lang('Date') {{ showDateTime($withdrawal->created_at) }}
  • @lang('Trx Number') {{ $withdrawal->trx }}
  • @lang('Username') @can('admin.users.detail') {{ @$withdrawal->user->username }} @else {{ @$withdrawal->user->username }} @endcan
  • @lang('Method') {{ __(@$withdrawal->method->name) }}
  • @lang('Amount') {{ showAmount($withdrawal->amount) }} {{ __($general->cur_text) }}
  • @lang('Charge') {{ showAmount($withdrawal->charge) }} {{ __($general->cur_text) }}
  • @lang('After Charge') {{ showAmount($withdrawal->after_charge) }} {{ __($general->cur_text) }}
  • @lang('Rate') 1 {{ __($general->cur_text) }} = {{ showAmount($withdrawal->rate) }} {{ __($withdrawal->currency) }}
  • @lang('Payable') {{ showAmount($withdrawal->final_amount) }} {{ __($withdrawal->currency) }}
  • @lang('Status') @php echo $withdrawal->statusBadge @endphp
  • @if ($withdrawal->admin_feedback)
  • @lang('Admin Response')

    {{ $withdrawal->admin_feedback }}

  • @endif
@lang('User Withdraw Information')
@if ($details != null) @foreach (json_decode($details) as $val)
{{ __(@$val->name) }}
@if ($val->type == 'checkbox') {{ implode(',', @$val->value) }} @elseif(@$val->type == 'file') @if (@$val->value) @can('admin.download.attachment') @lang('Attachment') @endcan @else @lang('No File') @endif @else

{{ __(@$val->value) }}

@endif
@endforeach @endif @if ($withdrawal->status == Status::PAYMENT_PENDING)
@endif
{{-- APPROVE MODAL --}} {{-- REJECT MODAL --}} @endsection @push('script') @endpush