@extends('admin.layouts.app')
@section('panel')
{{ collect($widget['total_users'])->count() }}
Total Users
View all
{{ collect($widget['total_users'])->where('status', 1)->count() }}
Active Users
View all
{{ collect($widget['total_users'])->where('status', 0)->count() }}
Banned Users
View all
@foreach($widget['users_wallets'] as $data)
{{ $general->cur_sym }} {{ formatter_money($data->amo) }}
{{strtoupper(str_replace('_',' ',$data->type))}}
View all
@endforeach
{{ collect($widget['total_users'])->where('ev', 0)->count() }}
Email Unerified Users
View all
{{ collect($widget['total_users'])->where('sv', 0)->count() }}
SMS Unverified Users
View all
{{ formatter_money($widget['deposits']->total) }}
Total Deposits
View all
{{ $general->cur_sym }}{{ formatter_money($widget['deposits']->total_charge) }}
Total Deposit Charge
View all
{{ $general->cur_sym }}{{ formatter_money($widget['deposits']->total_amount) }}
Total Deposit Amount
View all
{{ formatter_money($widget['withdrawals']->total) }}
Total Withdrawals
View all
{{ $general->cur_sym }}{{ formatter_money($widget['withdrawals']->total_charge) }}
Total Withdrawal Charge
View all
{{ $general->cur_sym }}{{ formatter_money($widget['withdrawals']->total_amount) }}
Total Withdrawal Amount
View all
@endsection
@push('style-lib')
@endpush
@push('script-lib')
@endpush
@push('script')
@endpush