@extends($activeTemplate . 'layouts.master') @section('content')
@forelse($withdraws as $withdraw) @php $details = []; foreach ($withdraw->withdraw_information as $key => $info) { $details[] = $info; if ($info->type == 'file') { $details[$key]->value = route( 'user.download.attachment', encrypt(getFilePath('verify') . '/' . $info->value), ); } } @endphp @empty @endforelse
@lang('Gateway | Transaction') @lang('Initiated') @lang('Amount') @lang('Conversion') @lang('Status') @lang('Action')
{{ __(@$withdraw->method->name) }}
{{ $withdraw->trx }}
{{ showDateTime($withdraw->created_at) }}
{{ diffForHumans($withdraw->created_at) }}
{{ showAmount($withdraw->amount) }} - {{ showAmount($withdraw->charge) }}
{{ showAmount($withdraw->amount - $withdraw->charge) }}
{{ showAmount(1) }} = {{ showAmount($withdraw->rate, currencyFormat: false) }} {{ __($withdraw->currency) }}
{{ showAmount($withdraw->final_amount, currencyFormat: false) }} {{ __($withdraw->currency) }}
@php echo $withdraw->statusBadge @endphp
{{ __($emptyMessage) }}
@if ($withdraws->hasPages()) @endif
{{-- APPROVE MODAL --}} @endsection @push('script') @endpush