@isset($transactions) @forelse ($transactions as $item) {{-- @dd($item) --}}
@if ($item->type == payment_gateway_const()::TYPEADDMONEY)

{{ __('Add Balance via') }} {{ $item->currency->name }}

@endif {{ $item->StringStatus->value }}
@if ($item->type == payment_gateway_const()::TYPEADDMONEY)

{{ get_amount($item->request_amount, get_default_currency_code()) }}

{{ get_amount($item->payable, $item->currency->currency_code) }}
@endif
{{ __("Time & Date") }}
{{ dateFormat('d M Y, h:i:s A',$item->created_at) }}
{{ __("Transaction ID") }}
{{ $item->trx_id }}
{{ __('Exchange Rate') }}
@if ($item->type == payment_gateway_const()::TYPEADDMONEY) 1 {{ get_default_currency_code() }} = {{ get_amount($item->currency->rate, $item->currency->currency_code) }} @endif
{{ __('Fees & Charge') }}
{{ get_amount($item->charge->total_charge, $item->user_wallet->currency->code) }}
@if ($item->type == payment_gateway_const()::TYPEADDMONEY) {{ __('Total Amount') }} @endif
@if ($item->type == payment_gateway_const()::TYPEADDMONEY) {{ get_amount($item->available_balance, get_default_currency_code()) }} @endif
{{ __('Status') }}
{{ $item->StringStatus->value }}
@if ($item->type == payment_gateway_const()::TYPEADDMONEY) @if ($item->gateway_currency->gateway->isTatum($item->gateway_currency->gateway) && $item->status == payment_gateway_const()::STATUSWAITING)
{{ __("Txn Hash") }}
@csrf @php $input_fields = $item->details->payment_info->requirements ?? []; @endphp @foreach ($input_fields as $input)
@endforeach
@endif @endif
@empty
{{ __("No Record Found!") }}
@endforelse @endisset