@extends('layouts.admin_template') @section('content')

{{ $pendingdeposit }}

Total Pending Deposit

{{ $pendingwithdraw }}

Total Pending Withdraw

{{ $rejecteddeposit }}

Total Rejected Deposit

{{ $rejectedwithdraw }}

Total Rejected Withdraw

Deposit Reports

@if(count($deposit) > 0) @foreach($deposit as $depositdata) @endforeach @endif
Vertex Account Id Amount Note Approved By Requested date Approved date Status
{{ $depositdata->mt5id }} {{ $depositdata->amount }} {{ $depositdata->note }} {{ $depositdata->approved_by }} {{ $depositdata->created_at }} {{ $depositdata->updated_at }} @if($depositdata->status == '0') @elseif($depositdata->status == '1') @elseif($depositdata->status == '2') @endif

Withdraw Reports

@if(count($withdraw) > 0) @foreach($withdraw as $withdrawdata) @endforeach @endif
Bank Account Vertex Account Id Amount Status Note
{{ $withdrawdata->bankaccount }} {{ $withdrawdata->mt5id }} {{ $withdrawdata->amount }} @if($withdrawdata->status == '0') @elseif($withdrawdata->status == '1') @elseif($withdrawdata->status == '2') @endif {{ $withdrawdata->note }}
@endsection