Withdrawable Balance

TZS {{ number_format($investor->getWithdrawableBalanceAttribute(), 2) }}

Available now

Pending Balance

TZS {{ number_format($investor->getPendingBalanceAttribute(), 2) }}

7-day hold period

Total Earned

TZS {{ number_format($investor->total_income_earned, 2) }}

Lifetime income

Wallet Breakdown
Current Balance TZS {{ number_format($investor->wallet()->current_balance ?? 0, 2) }}
Total Withdrawn TZS {{ number_format($investor->wallet()->total_withdrawn ?? 0, 2) }}
Pending Withdrawals TZS {{ number_format($investor->wallet()->pending_withdrawals ?? 0, 2) }}
Withdrawal Settings

Preferred Method

{{ str_replace('_', ' ', $investor->withdrawal_method ?? 'Not set') }}

Minimum Threshold

TZS {{ number_format($investor->withdrawal_threshold ?? 0, 2) }}

Auto Withdrawal

{{ $investor->auto_withdrawal_enabled ? 'Enabled' : 'Disabled' }}

Last Withdrawal

{{ $investor->wallet()->last_withdrawal_at ? \Carbon\Carbon::parse($investor->wallet()->last_withdrawal_at)->format('d M Y') : 'Never' }}

Recent Transactions
@php $recentTransactions = $investor->walletTransactions()->latest()->take(5)->get(); @endphp @forelse($recentTransactions as $transaction)

{{ ucfirst(str_replace('_', ' ', $transaction->transaction_type)) }}

{{ $transaction->created_at->format('d M Y, H:i') }}

{{ $transaction->transaction_type === 'credit' ? '+' : '-' }}TZS {{ number_format($transaction->amount, 2) }}

@empty

No recent transactions

@endforelse