@extends('layouts/layoutMaster') @section('title', 'Dashboard') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('page-script') @endsection @section('content') @can('permission_create')
Total Clients

{{ $totalusers }}

Total
Total Deposit

{{ $totaldeposit }}

Total
Total Withdraw

{{ $totalwithdraw }}

Total
Total Leads

{{ $totalleads }}

Total
Live Accounts

{{ $totalmt4 }}

Total
Total Affiliate

{{ $totalaffiliates }}

Total
Quick Links
{{ $withdrawrequest }}
Withdraw Requests
{{ $depositrequest }}
Deposit Requests
{{ $leveragerequest }}
Leverage Requests
Leads
Withdraws / Deposits
Latest Deposits
@foreach ($latestdeposit as $depo) @endforeach
Name MT5 Acc Amount Date
{{ $depo->user->name }}
{{ $depo->mt4account }}
{{ $depo->amount }}
{{ date('d-m-Y', strtotime($depo->created_at)) }}

Registration By Country

Online Users
    @forelse($users as $user)
  • {{ $user->name }} @if($user->ip_address) ({{ $user->ip_address }}) @endif
    {{ $user->created_at->diffForHumans() }}

    Registered on {{ date('d-m-Y', strtotime($user->created_at)) }}

  • @empty
  • No online users found

  • @endforelse
Latest Registration
@foreach ($allcli as $cuser) @endforeach
CLIENT NAME EMAIL MOBILE REGISTER DATE
{{ $cuser->name }}
{{ $cuser->email }}
{{ $cuser->mobile }}
{{ date('d-m-Y', strtotime($cuser->created_at)) }}
@endcan @can('user_client')
My Clients

{{ $myclients }}

Clients Deposit

{{ $mycdeposit }}

Clients Withdraw

{{ $mycwithdraw }}

My Leads

{{ $myleads }}

My Promo Code

{{ Auth::user()->promo }}

@endcan @can('user_affiliate')
@if (Auth::user()->usermanager == '1')
My Clients

{{ $myclients }}

@endif @if (Auth::user()->deposit == '1')
Clients Deposit

{{ $mycdeposit }}

@endif @if (Auth::user()->withdrawal == '1')
Clients Withdraw

{{ $mycwithdraw }}

@endif @if (Auth::user()->leads == '1')
My Leads

{{ $myleads }}

@endif
My Promo Code

{{ Auth::user()->promo }}

@endcan @endsection