@extends('layouts.app') @section('style') @endsection @section('content')

Wallet Deposit & Withdraw

Clients Monthly Deposit In Wallet

@if(count($walletDepositWithdraw) > 0)
Month Amount
@foreach ($walletDepositWithdraw->take(12) as $e)
{{ $e->YDATE}} $ {{$e->TDEPOSIT}}
@endforeach
@else


Sorry! No Data Found In This Daterange.




@endif

Clients Monthly Withdraw From Wallet

@if(!$walletDepositWithdraw->isEmpty())
Month Amount
@foreach ($walletDepositWithdraw->take(12) as $e)
{{ $e->YDATE}} $ {{$e->TWITHDRAW}}
@endforeach
@else


Sorry! No Data Found In This Daterange.




@endif

IB Monthly Deposit In Wallet

@if(count($IBwalletDepositWithdraw) > 0)
Month Amount
@foreach ($IBwalletDepositWithdraw->take(12) as $e)
{{ $e->YDATE}} $ {{$e->TDEPOSIT}}
@endforeach
@else


Sorry! No Data Found In This Daterange.




@endif

IB Monthly Withdraw From Wallet

@if(count($IBwalletDepositWithdraw) > 0)
Month Amount
@foreach ($IBwalletDepositWithdraw->take(12) as $e)
{{ $e->YDATE}} $ {{$e->TWITHDRAW}}
@endforeach
@else


Sorry! No Data Found In This Daterange.




@endif
@if(count($account['live']) > 0)
Month Count
@foreach ($account['live']->take(12) as $e)
{{ $e->YDATE }} {{ $e->LIVE }}
@endforeach
@else


Sorry! No Data Found In This Daterange.




@endif
@if(count($account['demo']) > 0)
Month Count
@foreach ($account['demo']->take(12) as $e)
{{ $e->YDATE }} {{ $e->DEMO }}
@endforeach
@else


Sorry! No Data Found In This Daterange.




@endif
@if(!$account['ib']->isEmpty())
Month Count
@foreach ($account['ib']->take(12) as $e)
{{ $e->YDATE }} {{ $e->IB }}
@endforeach
@else


Sorry! No Data Found In This Daterange.




@endif
@endsection @section('script') {{-- {{ Html::script('custom/eModal/eModal.js') }} --}}