@extends('layouts.admin') @section('contents')
{{-- balance --}}

Account Balance

{{ formatAmount($user->balance) }}

Total Deposits

{{ formatAmount($user->deposits_sum_amount) }}

Total Withdrawals

{{ formatAmount($user->withdrawals_sum_amount) }}

Bot Activations

{{ number_format($user->bot_activations_count) }}

Bot Capital

{{ formatAmount($user->bot_activations_sum_capital) }}

Bot Profits

{{ formatAmount($user->bot_history_sum_profit) }}

Direct Referrals

{{ number_format($user->referrals_count) }}

Profile Overview

{{ $user->name }}

{{ $user->gender }}

Registered:

Status: Active

Email: verified

KYC: Verified

Username

{{ $user->username ?? 'Not Set' }}

Email

{{ $user->email ?? 'Not Set' }}

Gender

{{ $user->gender ?? 'Not Set' }}

Address

{{ $user->address ?? 'Not Set' }}

State

{{ $user->state ?? 'Not Set' }}

Country

{{ $user->country ?? 'Not Set' }}

Phone

{{ $user->phone ?? 'Not Set' }}

D.o.B

{{ $user->dob ?? 'Not Set' }}

Referred By

{{ $user->referred_by ?? 'Direct Signup' }}

@endsection @section('scripts') @endsection