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

MT4 Deposit Withdraw

Client Wallet


Sum of all client wallet balance $ {{ isset($wallet['clientWallet']) ? round($wallet['clientWallet'],2) : 0 }}

IB Wallet


Sum of all IB wallet balance $ {{ isset($wallet['IBWallet']) ? round($wallet['IBWallet'],2) : 0 }}

Meagin Free


Sum of margin free $ {{ isset($wallet['marginFreeCredit'][0]->marginFree) ? $wallet['marginFreeCredit'][0]->marginFree : 0 }}

Credit


Sum of credit $ {{ isset($wallet['marginFreeCredit'][0]->credit) ? $wallet['marginFreeCredit'][0]->credit : 0 }}

Clients Monthly Deposit In MT4

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


Sorry! No Data Found In This Daterange.




@endif

Clients Monthly Withdraw From MT4

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


Sorry! No Data Found In This Daterange.




@endif

Monthly IB Brokerage

@if(count($IBbrokerage) > 0)
Month Count
@foreach ($IBbrokerage->take(12) as $e)
{{ $e->YDATE }} $ {{ $e->brokerage }}
@endforeach
@else


Sorry! No Data Found In This Daterange.




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