@forelse($transactions as $key => $item) @empty @endforelse
{{ __('Initiated At') }} {{ __('Trx') }} {{ __('Amount') }} {{ __('Post Balance') }} {{ __('Charge') }} {{ __('Source') }} {{ __('Wallet') }} {{ __('Details') }}
{{ showDateTime($item->created_at) }} {{ $item->trx }} {{ getCurrencySymbol() }}{{ shortAmount($item->amount) }} {{ \App\Enums\Transaction\WalletType::getName((int)$item->wallet_type) }} : {{ getCurrencySymbol() }}{{ shortAmount($item->post_balance) }} {{ getCurrencySymbol() }}{{ shortAmount($item->charge) }} {{ \App\Enums\Transaction\Source::getName((int)$item->source) }} {{ \App\Enums\Transaction\WalletType::getWalletName((int)$item->wallet_type) }} {{ $item->details }}
{{ __('No Data Found')}}
@if($is_paginate)
{{ $transactions->links() }}
@endif