@extends($activeTemplate . 'layouts.master')
@section('content')
@forelse($withdraws as $withdraw)
@lang('Gateway | Transaction')
@lang('Initiated')
@lang('Amount')
@lang('Conversion')
@lang('Status')
@lang('Action')
@empty
{{ __(@$withdraw->method->name) }}
{{ $withdraw->trx }}
{{ showDateTime($withdraw->created_at) }}
{{ diffForHumans($withdraw->created_at) }}
{{ showAmount($withdraw->amount) }} - {{ showAmount($withdraw->charge) }}
{{ showAmount($withdraw->amount - $withdraw->charge) }}
1 {{ __(gs('cur_text')) }} = {{ showAmount($withdraw->rate, currencyFormat: false) }} {{ __($withdraw->currency) }}
{{ showAmount($withdraw->final_amount, currencyFormat: false) }} {{ __($withdraw->currency) }}
@php echo $withdraw->statusBadge @endphp
@endforelse
{{ __($emptyMessage) }}