@extends($activeTemplate . 'layouts.master') @section('content')
@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 @if ($user->kv == 0) @elseif($user->kv == 2) @endif
@lang('Deposit Wallet')
{{ $general->cur_sym }}{{ showAmount($user->deposit_wallet) }}
@lang('Interest Wallet')
{{ $general->cur_sym }}{{ showAmount($user->interest_wallet) }}
@lang('Total Invest')
{{ $general->cur_sym }}{{ showAmount($totalInvest) }}
@lang('Total Ticket')
{{ $totalTicket }}

@lang('Deposit')

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

@lang('Withdraw')

@lang('Total Withdraw')
{{ $general->cur_sym }}{{ showAmount($totalWithdraw) }}
@lang('Last Withdraw')
{{ $general->cur_sym }}{{ showAmount(@$lastWithdraw->amount ?? 0) }}
@endsection @push('style') @endpush @push('script') @endpush