Current Balance
${{ number_format($user->balance ?? 0, 2) }}
Available for withdrawalCurrent Package
{{ $currentPlan ? $currentPlan->name : 'No Plan' }}
{{ $currentPlan ? '$' . number_format($currentPlan->price, 2) : 'Purchase a plan' }}Total Referrals
{{ $referrals->total() }}
Active team membersTeam Deposits
${{ number_format($teamDeposits, 2) }}
Total team businessRecent Transactions
Date | Type | Amount | Status | User | Referrer | Level | Commission | Plan | Payment Method | Notes | Action |
---|---|---|---|---|---|---|---|---|---|---|---|
{{ $transaction->created_at->format('M d, Y H:i') }} | {{ ucfirst(str_replace('_', ' ', $transaction->type)) }} | ${{ number_format($transaction->amount, 2) }} | {{ ucfirst($transaction->status) }} | {{ isset($referralData->user_name) ? $referralData->user_name : $transaction->user->name ?? 'N/A' }} | {{ isset($referralData->referrer_name) ? $referralData->referrer_name : 'N/A' }} | {{ isset($referralData->level) ? $referralData->level : 'N/A' }} | {{ isset($referralData->commission_amount) ? '$' . number_format($referralData->commission_amount, 2) : 'N/A' }} | {{ isset($referralData->plan_name) ? $referralData->plan_name : 'N/A' }} | {{ isset($referralData->payment_method) ? $referralData->payment_method : 'N/A' }} | {{ isset($referralData->admin_notes) ? $referralData->admin_notes : 'N/A' }} | Details |
No transactions found |