@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('My Transaction')

@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 == '+') + {{ $general->cur_sym }}{{ showAmount($trx->amount) }} @else - {{ $general->cur_sym }}{{ showAmount($trx->amount) }} @endif @if ($trx->wallet_type == 'deposit_wallet') @lang('Deposit Wallet') @else @lang('Interest Wallet') @endif {{ $trx->details }} {{ $general->cur_sym }}{{ showAmount($trx->post_balance) }}
@lang('No Transaction Found')
@endsection @push('style') @endpush