@extends('layouts.admin.base') @section('page-title') Users @endsection @section('content')
| User | Total Received | Invetment(s) | Referrer | Referred | Team Volume | Black Friday Team Volume | Referral Code | KYC | Date Joined | Status | Action |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $user->name }} {{ $user->email }} |
{{ formatMoney($user->wallets->sum('balance')) }} |
{{ $user->investments->count() }} |
{{ $user->bringer->name ?? NOT_AVAILABLE }} |
{{ $user->referrals->count() }} |
{{ $team_volumes[$user->id]['downline_count'] ?? 0 }} downlines | {{ formatMoney($team_volumes[$user->id]['volume'] ?? 0) }} |
@php
$bf_volume = $blackfriday_team_volumes[$user->id] ?? ['total' => 0, 'level_1' => 0, 'level_2' => 0];
$settings = \App\Models\BlackFridaySetting::getSettings();
@endphp
@if($settings->isActive())
Total: {{ formatMoney($bf_volume['total'] ?? 0) }} L1: {{ formatMoney($bf_volume['level_1'] ?? 0) }} L2: {{ formatMoney($bf_volume['level_2'] ?? 0) }} @elseN/A @endif |
{{ $user->referral_code }} |
@if($user->active_kyc) View Document @else {{ NOT_AVAILABLE }} @endif |
{{ formatDateTime($user->created_at) }} |
{{ $user->status_data()->message }} |
|
| No users found. | |||||||||||
Showing {{ $users->firstItem() ?? 0 }} to {{ $users->lastItem() ?? 0 }} of {{ $users->total() }} users @if(!empty($search)) (filtered by: "{{ $search }}") @endif