@forelse ($transactions as $txn)

{{ $txn->Name }}

{{ \Carbon\Carbon::parse($txn->Date)->format('d M, Y') }}
Number {{ $txn->Number }} Method {{ $txn->Method }} {{ $type === 'addmoney' ? 'From' : 'To' }} {{ $txn->Payment }}
@if ($type == 'addmoney' && !empty($txn->TrxID))
{{ $txn->TrxID }}
@endif
@empty
No pending requests found.
@endforelse