@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') @{{ @$withdrawal->user->username }}
  • @lang('Method') {{ __($withdrawal->method->name) }}
  • @lang('Amount') {{ showAmount($withdrawal->amount) }}
  • @lang('Charge') {{ showAmount($withdrawal->charge) }}
  • @lang('After Charge') {{ showAmount($withdrawal->after_charge) }}
  • @lang('Rate') 1 {{ __(gs('cur_text')) }} = {{ showAmount($withdrawal->rate) }}
  • @lang('Payable') {{ showAmount($withdrawal->final_amount) }}
  • @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) @lang('Attachment') @else @lang('No File') @endif @else

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

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