@can('permission_create')
  • Total Clients

    {{ $totalusers }}

  • Total Deposit

    {{ $totaldeposit }}

  • Total Withdraw

    {{ $totalwithdraw }}

  • Total Leads

    {{ $totalleads }}

  • Live Accounts

    {{ $totalmt4 }}

  • Total Affiliate

    {{ $totalaffiliates }}

Withdrawals/Deposits

Today's Withdraw
${{ $todayWithdraw }}
Today's Deposit
${{ $todayDeposit }}

Leads

Registration By Country

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)) }}

Latest Deposits

@foreach ($latestdeposit as $depo) @endforeach
NAME MT5 A/C AMOUNT DATE
{{ $depo->user->name }}
{{ $depo->mt4account }}
{{ $depo->amount }}
{{ date('d-m-Y', strtotime($depo->created_at)) }}

{{ $withdrawrequest }}

Withdraw Requests


{{ $depositrequest }}

Deposit Requests


{{ $leveragerequest }}

Leverage Requests

Online Users

@foreach($users as $user)
{{ $user->name }}, {{ $user->ip_address ?? '' }}
{{ date('d-m-Y', strtotime($user->created_at)) }}
@endforeach
@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