@extends($activeTemplate . 'layouts.master') @section('content') @php $kyc = getContent('kyc.content', true); @endphp
@if ($user->kv == Status::KYC_UNVERIFIED && $user->kyc_rejection_reason) @elseif($user->kv == Status::KYC_UNVERIFIED) @elseif($user->kv == Status::KYC_PENDING) @endif @if ($user->deposit_wallet <= 0 && $user->interest_wallet <= 0) @endif @if ($user->deposits->where('status', 1)->count() == 1 && !$user->invests->count()) @endif @if ($pendingWithdrawals) @endif @if ($pendingDeposits) @endif @if (!$user->ts) @endif @if ($isHoliday) @endif
@lang('Deposit Wallet')
{{ showAmount($user->deposit_wallet) }}
@lang('Interest Wallet')
{{ showAmount($user->interest_wallet) }}
@lang('Total Invest')
{{ showAmount($totalInvest) }}
@lang('Total Ticket')
{{ $totalTicket }}

@lang('Deposit')

@lang('Total Deposit')
{{ showAmount($totalDeposit) }}
@lang('Last Deposit')
{{ showAmount(@$lastDeposit->amount ?? 0) }}

@lang('Withdraw')

@lang('Total Withdraw')
{{ showAmount($totalWithdraw) }}
@lang('Last Withdraw')
{{ showAmount(@$lastWithdraw->amount ?? 0) }}
@if ($user->kv == Status::KYC_UNVERIFIED && $user->kyc_rejection_reason) @endif @endsection @push('script') @endpush