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

{{ __('Dashboard') }}

@if(Session::has('cache'))

{{ Session::get("cache") }}

@endif
{{ __('Active Customers') }}
{{count($acustomers)}}
{{ __('Blocked Customers') }}
{{ count($bcustomers) }}
{{ __('Total Blogs') }}
{{ count($blogs) }}
{{ __('Total Plans') }}
{{ count($plans) }}
{{ __('Total Deposits') }}
{{ count($deposits) }}
{{ __('Total Deposit Amount') }}
{{ round($depositAmount,2) }} {{ $currency->name}}
{{ __('Total Invest') }}
{{ count($invests) }}
{{ __('Total Invest Amount') }}
{{ round($investsAmount,2) }} {{ $currency->name}}
{{ __('Total Balance Transfer') }}
{{ count($transfers) }}
{{ __('Total Balance Transfer Amount') }}
{{ round($transfersAmount,2) }} {{ $currency->name}}
{{ __('Total Withdraw Amount') }}
{{ round($withdrawAmount,2) }} {{ $currency->name}}
{{ __('Total Withdraw Charge Amount') }}
{{ round($withdrawChargeAmount,2) }} {{ $currency->name}}
{{ __('Total Request Money') }}
{{ round($requestAmount,2) }} {{ $currency->name}}
{{ __('Total Referral Bonus') }}
{{ round($bonus,2) }} {{ $currency->name}}
{{ __('Total Transactions') }}
{{ count($transactions) }}
{{ __('Total Tickets') }}
{{ count($tickets) }}
@lang('Recent Joined Users')
@if (count($users)>0)
@foreach ($users as $key=>$data) @endforeach
@lang('Serial No') @lang('Name') @lang('Email') @lang('Status') @lang('Action')
{{ $loop->iteration}} {{ $data->name }} {{ $data->email }} {{ $data->is_banned == 0 ? 'activated' : 'deactivated'}} @lang('Detail')
@else

@lang('NO USER FOUND')

@endif
@endsection @section('scripts') @endsection