@extends('agent.layouts.main') @section('panel')
@forelse($withdrawLogs as $key => $withdrawLog) @empty @endforelse
{{ __('Initiated At') }} {{ __('Trx') }} {{ __('Gateway') }} {{ __('Amount') }} {{ __('Charge') }} {{ __('Final Amount') }} {{ __('Conversion') }} {{ __('Status') }}
{{ showDateTime($withdrawLog->created_at) }} {{ $withdrawLog->trx }} {{ $withdrawLog?->withdrawMethod?->name ?? 'N/A' }} {{ getCurrencySymbol() }}{{ shortAmount($withdrawLog->amount) }} {{ getCurrencySymbol() }}{{ shortAmount($withdrawLog->charge) }} {{ getCurrencySymbol() }}{{ shortAmount($withdrawLog->final_amount) }} {{ getCurrencySymbol() }}1 = {{ shortAmount($withdrawLog->rate) }} {{ $withdrawLog?->withdrawMethod?->currency_name ?? getCurrencyName() }} {{ App\Enums\Payment\Withdraw\Status::getName($withdrawLog->status)}}
{{ __('No Data Found')}}
{{ $withdrawLogs->appends(request()->all())->links() }}
@endsection