{{-- resources/views/partials/dashboard/desktop_right.blade.php --}} {{-- Expects: - $recentTransactions - $settings - $total_deposited_pending - $total_withdrawal_pending - $total_withdrawal - $deposited - $limit - $currency_symbol --}}

Recent Transactions

View All
@forelse($recentTransactions->take(3) as $tx)

{{ $tx->name }}

{{ $tx->date }}

{{ $tx->amount_formatted }}

@empty

No recent transactions

@endforelse
@include('partials._dashboard_account_stats', [ 'limit' => $limit, 'pending_deposits' => $total_deposited_pending, 'pending_withdrawals' => $total_withdrawal_pending, 'total_volume' => $total_withdrawal + $deposited, 'currency_symbol' => $currency_symbol ]) @include('partials._dashboard_help_support', ['support_route' => route('support')])