{{ _mt($moduleId, 'MultiDashboard.welcome_back') }} {{ strlen($user->metaData->firstname) > 6 ? substr($user->metaData->firstname, 0, 6) . '...' : $user->metaData->firstname }} 🎉
{{ $user->member_id }}
{{ _mt($moduleId, 'MultiDashboard.package') }} {{ $user->repoData->package ? $user->repoData->package->name : '' }}
{{ _mt($moduleId, 'MultiDashboard.rank') }} {{ $rank ? $rank->rank->name : '' }}
{{ _mt($moduleId, 'MultiDashboard.downlines') }}
{{ _mt($moduleId, 'MultiDashboard.all_time') }}
{{ $tiles['userJoining']['downlines'] }}
{{ _mt($moduleId, 'MultiDashboard.ewallet') }}
{{ _mt($moduleId, 'MultiDashboard.all_time') }}
{{ currency($tiles['eWallet']['balance']) }}
{{ $tiles['eWallet']['margin'] }}
{{ _mt($moduleId, 'MultiDashboard.income_generated_this_week') }}
{{ _mt($moduleId, 'MultiDashboard.payout') }}
{{ _mt($moduleId, 'MultiDashboard.all_time') }}
{{ currency($tiles['payout']['amount']) }}
{{ _mt($moduleId, 'MultiDashboard.payout_pending') }}
{{ $tiles['payout']['pending'] }}
Recent Block
Joinings
Activities
@if($userJoining->count())
@foreach($userJoining as $joining)
@endforeach
@else
{{ _mt($moduleId, 'MultiDashboard.member_id') }}:{{ $joining->member_id }}
{{ _mt($moduleId, 'MultiDashboard.username') }}:{{ strlen($joining->username) > 6 ? substr($joining->username, 0, 6) . '...' : $joining->username }}
{{ _mt($moduleId, 'MultiDashboard.package') }}:{{ $joining->repoData->package ? $joining->repoData->package->name : '' }}
{{ _mt($moduleId, 'MultiDashboard.sponsor') }}:{{ strlen($joining->sponsor()->username) > 6 ? substr($joining->sponsor()->username, 0, 6) . '...' : $joining->sponsor()->username }}
{{ _mt($moduleId, 'MultiDashboard.parent') }}:{{ strlen($joining->parent()->username) > 6 ? substr($joining->parent()->username, 0, 6) . '...' : $joining->parent()->username }}
{{ _mt($moduleId, 'MultiDashboard.join_date') }}:{{ Carbon::parse($joining->created_at)->format('Y-m-d') }}
{{ _mt($moduleId, 'MultiDashboard.no_data') }}
@endif-
@if($recentActivities->count())
@foreach($recentActivities as $activity)
-
{{ $activity->created_at->format('H:i A') }}
{{ str_replace('%user%', strlen($activity->user->username) > 6 ? substr($activity->user->username, 0, 6) . '...' : $activity->user->username, $activity->activity->description[currentLocal()]) }}
{{ $activity->created_at->format('D Y') }} ({{ $activity->created_at->diffForHumans() }})
@endforeach
@else
{{ _mt($moduleId, 'MultiDashboard.no_data') }}
@endif{{ _mt($moduleId, 'MultiDashboard.commission_granted') }}
{{ _mt($moduleId, 'MultiDashboard.this_week') }}
{{ currency($commissionGranted['totalCommission']) }}
{{--
@foreach($commissionGranted['dailyCommission']['commission'] as $key => $dailyCommission)
@endforeach
@foreach($commissionGranted['dailyCommission']['days'] as $day)
{{ $day }}
@endforeach
{{ strlen(loggedUser()->username) > 6 ? substr(loggedUser()->username, 0, 6) . '...' : loggedUser()->username }}
{{ _mt($moduleId, 'MultiDashboard.your_referral_link') }}
{{ _mt($moduleId, 'MultiDashboard.ewallet_overview') }}
{{ _mt($moduleId, 'MultiDashboard.last_semester_stats') }}
{{ _mt($moduleId, 'MultiDashboard.credit') }}
{{ currency($eWalletOverview['credit']) }}
{{ _mt($moduleId, 'MultiDashboard.debit') }}
{{ currency($eWalletOverview['debit']) }}
{{ _mt($moduleId, 'MultiDashboard.top_performers') }}
{{ _mt($moduleId, 'MultiDashboard.sponsors') }}
{{ _mt($moduleId, 'MultiDashboard.earners') }}
@if($topSponsors->count())
@foreach($topSponsors as $sponsor)
metaData->profile_pic) && $sponsor->MetaData->profile_pic != null )
src="{{ asset($sponsor->metaData->profile_pic) }}"
@else
src="{{ asset('photos/maleUser.jpg') }}"
@endif
class="sponsor-img" alt="Victor">
@endforeach
@else
{{ strlen($sponsor->username) > 6 ? substr($sponsor->username, 0, 6) . '...' : $sponsor->username}}
{{ $sponsor->downlines}} {{ _mt($moduleId, 'MultiDashboard.referrals') }}
{{ _mt($moduleId, 'MultiDashboard.no_data') }}
@endif
@if($topEarners->count())
@foreach($topEarners as $earner)
metaData->profile_pic) && $earner->MetaData->profile_pic != null )
src="{{ asset($earner->metaData->profile_pic) }}"
@else
src="{{ asset('photos/maleUser.jpg') }}"
@endif
class="earners-img" alt="Victor">
@endforeach
@else
{{ strlen($earner->username) > 6 ? substr($earner->username, 0, 6) . '...' : $earner->username }}
{{ $earner->earnings ? currency($earner->earnings) : currency(0) }}


--}}
{{--