{{$user->name}}

{{$user->email}}

  • $ {{number_format($user->profit(), 2, '.', ',')}}

    Available Balance

  • {{$user->investments->count()}}

    Number of Investments

@if ($user->canEarn()) @else @endif
@csrf


@include('inc.message')
@if (!$user->isAdmin()) @else @endif @if ($user->trashed()) @else @endif
Capital Invested

${{number_format($user->investments->where('status', 1)->sum('amount'), 2, '.', ',')}}

Amount in USD

Profit Earned (withdrawable)

${{number_format($user->profit(), 2, '.', ',')}}

Amount in USD

Referral Bonus

${{number_format($user->referralProfit(), 2, '.', ',')}}

Amount in USD

Withdrawals

${{number_format($user->withdrawals->where('status', 1)->sum('amount'), 2, '.', ',')}}

Amount in USD

Installments

${{number_format($user->installmentBalance(), 2, '.', ',')}}

Amount in USD

Withdrawal History


@foreach ($user->withdrawals->sortDesc() as $withdrawal) @endforeach
Amount Status Wallet Type Address Transaction Type Actions Date
${{number_format($withdrawal->amount, 2, '.', ',')}} @if ($withdrawal->status == 0) Pending @elseif($withdrawal->status == 1) Approved @else Declined @endif {{$withdrawal->wallet_type}} {{$withdrawal->address}} {{$withdrawal->transaction_type}} {{$withdrawal->created_at->format('d/m/y')}}

Investment History


@foreach ($user->investments->sortDesc() as $investment) @endforeach
User Email Amount Status Profit Start Date End Date Contract Duration Actions
{{$investment->user->email}} ${{number_format($investment->amount, 2, '.', ',')}} @switch($investment->status) @case(0) Pending @break @case(1) Approved @break @case(2) Completed @break @case(3) Withdrawn @break @default Declined @break @endswitch ${{number_format($investment->profit(), 2, '.', ',')}} {{$investment->created_at->format('d/m/Y')}} {{date('d/m/Y', strtotime($investment->created_at." + ".$investment->contract_duration))}} {{$investment->contract_duration}}

Profit Earning History
Number of days ago
@error('weekly_earning_weeks') {{ $message }} @enderror
Loading...


@foreach ($user->compound_wallets->sortDesc() as $wallet) @endforeach
Earned Amount Status Accrued Time Capital Date Actions
{{number_format($wallet->amount, 2, '.', ',')}} @if ($wallet->status == 0) Pending @elseif($wallet->status == 1) Approved @else Declined @endif {{$wallet->created_at->diffForHumans()}} {{number_format($wallet->investment->amount, 2, '.', ',')}} {{$wallet->created_at->format('d/m/y')}}
@include('inc.make_withdrawal_modal') @include('inc.edit_withdrawal_modal') @include('inc.make_investment_modal') @include('inc.edit_investment_modal') @include('inc.edit_daily_earning') @include('inc.edit_weekly_earning') @include('inc.topup_modal') @include('inc.deduct_modal') @include('inc.topup_installment') @include('inc.deduct_installment') @include('inc.installmentInvestment')