@extends('admin.layouts.main') @section('panel')

{{ __('Withdraw Details') }}

  • {{ __('Initiated At') }} {{ showDateTime($withdraw->created_at) }}
  • {{ __('Gateway') }} {{ $withdraw->withdrawMethod->name ?? 'N/A' }}
  • {{ __('Rate') }} {{ getCurrencySymbol() }}1 = {{shortAmount($withdraw->rate)}} {{ $withdraw->withdrawMethod->currency ?? getCurrencyName() }}
  • {{ __('Trx') }} {{$withdraw->trx}}
  • {{ __('Withdraw Amount') }} {{ getCurrencySymbol() }}{{shortAmount($withdraw->amount)}}
  • {{ __('Charge') }} {{ getCurrencySymbol() }}{{shortAmount($withdraw->charge)}}
  • {{ __('Final Amount') }} {{ getCurrencySymbol() }}{{shortAmount($withdraw->final_amount)}}
  • {{ __('After Charge') }} {{ getCurrencySymbol() }}{{shortAmount($withdraw->after_charge)}}
  • {{ __('Status') }} {{ \App\Enums\Payment\Withdraw\Status::getName($withdraw->status) }}
@if($withdraw->meta)
{{ __('Payment Information') }}
    @foreach($withdraw->meta as $key => $meta)
  • {{ __(replaceInputTitle($key)) }} {{ $meta }}
  • @endforeach
@endif @if($withdraw->status == \App\Enums\Payment\Withdraw\Status::PENDING->value)
{{ __('Check the withdraw details and update its status.') }}
@endif
@if($withdraw->status == \App\Enums\Payment\Withdraw\Status::PENDING->value) @endif @endsection