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

{{ $general->cur_sym }}{{ getAmount($user->deposit_wallet) }}

@lang('Earning Balance')

{{ $general->cur_sym }}{{ getAmount($user->interest_wallet) }}

@lang('Payment Withdrawal')

{{ $general->cur_sym }}{{ getAmount($user->withdrawals->where('status',1)->sum('amount')) }}

@lang('Referral Earnings')

{{ $general->cur_sym }}{{ showAmount($referral_earnings) }}

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