@extends('dashboard.layouts.main') @section('title', 'Core Mining ⛏️- AI Gold Mining ⛏️') @push('styles') @endpush @section('content')

Investment Commission Earnings

Earnings from referral investments

${{ number_format($pendingInvestmentCommissions ?? 0, 2) }}
Minimum $1
@if(($pendingInvestmentCommissions ?? 0) < 1)
${{ number_format(max(0, 1 - ($pendingInvestmentCommissions ?? 0)), 2) }} more needed to claim
@else
Ready to claim!
@endif
@if(isset($pendingInvestmentCommissionsByLevel) && count($pendingInvestmentCommissionsByLevel) > 0)

Breakdown by Level:

@for($i = 1; $i <= 5; $i++)
Level {{ $i }}
${{ number_format($pendingInvestmentCommissionsByLevel[$i] ?? 0, 2) }}
@endfor
@endif

You can claim investment commission earnings when balance reaches $1 or more

Earning Commission Earnings

Earnings from referral mining profits

${{ number_format($pendingEarningCommissions ?? 0, 2) }}
Minimum $0.2
@if(($pendingEarningCommissions ?? 0) < 0.2)
${{ number_format(max(0, 0.2 - ($pendingEarningCommissions ?? 0)), 2) }} more needed to claim
@else
Ready to claim!
@endif
@if(isset($pendingEarningCommissionsByLevel) && count($pendingEarningCommissionsByLevel) > 0)

Breakdown by Level:

@for($i = 1; $i <= 5; $i++)
Level {{ $i }}
${{ number_format($pendingEarningCommissionsByLevel[$i] ?? 0, 2) }}
@endfor
@endif

You can claim earning commission earnings when balance reaches $0.2 or more

@push('scripts') @endpush @endsection