@props(['user'])
{{ $user->username }}
{{ $user->email }}
Email Verification
@if($user->email_verified_at) Verified on {{ $user->email_verified_at->format('M d, Y') }} @else Not verified @endif
KYC Verification
@if($user->kyc_status == 1) Identity verified @elseif($user->kyc_status == 2) Under review @else Not submitted @endif
Running Bots
{{ $user->running_bots ?? 0 }}
@if(($user->running_bots_total ?? 0) > 0)USDT {{ number_format($user->running_bots_total, 2) }}
@endifExpired Bots
{{ $user->expired_bots ?? 0 }}
@if(($user->expired_bots_total ?? 0) > 0)USDT {{ number_format($user->expired_bots_total, 2) }}
@endifManual Bids
Total bids placed
{{ $user->manual_bids_count ?? 0 }}
@if(($user->manual_bids_total ?? 0) > 0)USDT {{ number_format($user->manual_bids_total, 2) }}
@endifSuccessful
{{ $user->manual_bids_successful ?? 0 }}
Pending
{{ $user->manual_bids_pending ?? 0 }}
Failed
{{ $user->manual_bids_failed ?? 0 }}
Manual Sells
Total sells completed
{{ $user->manual_sells_count ?? 0 }}
@if(($user->manual_sells_total ?? 0) > 0)USDT {{ number_format($user->manual_sells_total, 2) }}
@endifSuccessful
{{ $user->manual_sells_successful ?? 0 }}
Pending
{{ $user->manual_sells_pending ?? 0 }}
Failed
{{ $user->manual_sells_failed ?? 0 }}