@php $deposits = $deposits ?? null; $withdrawals = $withdrawals ?? null; $others = $others ?? null; $profits = $profits ?? null; @endphp

Account transactions history

All your transaction history in one place.

request()->routeIs('accounthistory'), ])>

Deposits

@if ($deposits) {{ $deposits->count() }} records @endif
request()->routeIs('withdrawlhistory'), ])>

Withdrawals

@if ($withdrawals) {{ $withdrawals->count() }} records @endif
@if ($mod['investment'])
request()->routeIs('profithistory'), ])>

Profit

@if ($profits) {{ $profits->count() }} records @endif
@endif
request()->routeIs('otherhistory'), ])>

Others

@if ($others) {{ $others->count() }} records @endif