@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 Balance')

{{ showAmount($user->deposit_wallet) }}

@lang('Interest Wallet Balance')

{{ showAmount($user->interest_wallet) }}

@lang('Total Invest')

{{ showAmount($totalInvest) }}

@lang('Total Deposit')

{{ showAmount($totalDeposit) }}

@lang('Total Withdraw')

{{ showAmount($totalWithdraw) }}

@lang('Referral Earnings')

{{ showAmount($referralEarnings) }}

@forelse($transactions as $trx) @empty @endforelse
@lang('Date') @lang('Transaction ID') @lang('Amount') @lang('Wallet') @lang('Details') @lang('Post Balance')
{{ showDatetime($trx->created_at, 'd/m/Y') }} {{ $trx->trx }} @if ($trx->trx_type == '+') + {{ __(gs('cur_sym')) }}{{ getAmount($trx->amount) }} @else - {{ __(gs('cur_sym')) }}{{ getAmount($trx->amount) }} @endif @if ($trx->wallet_type == 'deposit_wallet') @lang('Deposit Wallet') @else @lang('Interest Wallet') @endif {{ $trx->details }} {{ __(gs('cur_sym')) }}{{ getAmount($trx->post_balance) }}
{{ __('No Transaction Found') }}
@if ($user->kv == Status::KYC_UNVERIFIED && $user->kyc_rejection_reason) @endif @endsection @push('style') @endpush @push('script') @endpush