Total Asset
${{ number_format($user->balance, 2) }}
= {{ number_format($btc_value, 8) }} BTC
*****
Proceed
@endif
KYC Verification!
To comply with regulation, each participant will have to go through indentity verification (KYC/AML) to prevent fraud causes.
Use the below link to invite your friends.
{{--
--}}
Main Balance
${{ number_format($user->balance, 2) }}
Referral Bonus
${{ number_format($user->ref_balance, 2) }}
Active Potfolios ({{ count($active_investments) }})
View All Potfolios| S/N | Plan | Amount | Interest | Plan Duration | Status | Date |
|---|---|---|---|---|---|---|
| {{ $counter }} | {{ optional($item->plan)->name }} PLAN | ${{ number_format($item->amount, 2) }} | ${{ number_format($item->interest, 2) }} | {{ optional($item->plan)->duration }} Day(s) | {{ Str::ucfirst($item->invest_status) }} | {{ $item->created_at->diffForHumans() }} |
Recent Earning
View All Earning| S/N | Type | Amount | Status | Date |
|---|---|---|---|---|
| {{ $counter }} | {{ Str::ucfirst($item->type) }} | ${{ number_format($item->amount, 2) }} | {{ Str::ucfirst($item->status) }} | {{ $item->created_at->diffForHumans() }} |
Total Users
{{ count($all_users) }}
Active Users
{{ count($active_users) }}
Blocked Users
{{ count($blocked_users) }}
Active Subscribers
{{ count($subscribers) }}
Total Withdrawal
${{ number_format($admin_total_withdrawal, 2) }}
Pending Withdrawal
${{ number_format($admin_pending_withdrawal, 2) }}
Total Deposits
${{ number_format($admin_total_deposit, 2) }}
Pending Deposit
${{ number_format($admin_pending_deposit, 2) }}
Latest Users
| S/N | Name | Phone | Balance | Country | Status | Date Joined | |
|---|---|---|---|---|---|---|---|
| {{ $counter }} | {{ $item->name }} | {{ $item->email }} | {{ $item->phone }} | ${{ number_format($item->balance, 2) }} | {{ $item->country }} | {{ Str::ucfirst($item->status) }} | {{ $item->created_at->diffForHumans() }} |
Recent Withdrawals
| S/N | Client | Amount | Charge | Payment Method | Type | Status | Date |
|---|---|---|---|---|---|---|---|
| {{ $counter }} | {{ optional($item->user)->name }} | ${{ number_format($item->amount, 2) }} | ${{ number_format($item->charge, 2) }} | {{optional($item->user_wallet)->system_wallet->name ?? 'Unknown' }} | {{$item->type == 'main_balance' ? 'Main Balance' : 'Referral Bonus'}} | {{ Str::ucfirst($item->status) }} | {{ $item->created_at->diffForHumans() }} |