{{-- Show Credentials Setup Alert --}}
@if (Route::is('admin.dashboard') && ($checkCrentials = checkCrentials())) @foreach ($checkCrentials as $checkCrential) @if ($checkCrential->status)
{{ $checkCrential->message }}
{{ $checkCrential->description }} {{ __('Update') }}
@endif @endforeach @endif
@if ($setting->is_queable == 'active' && Cache::get('corn_working') !== 'working')
@endif @adminCan('dashboard.view')

{{__('Today Order')}}

{{ $today_order->count() }}

{{__('Today Income')}}

{{ $today_order->sum('plan_price') }}

{{__('This Month Order')}}

{{ $this_month_order->count() }}

{{__('This Month Income')}}

{{ $this_month_order->sum('plan_price') }}

{{__('This Year Order')}}

{{ $this_year_order->count() }}

{{__('This Year Income')}}

{{ $this_year_order->sum('plan_price') }}

{{__('Total Order')}}

{{ $total_order->count() }}

{{__('Total Income')}}

{{ $total_order->sum('plan_price') }}

{{__('Active Property')}}

{{ $properties->where('status',1)->count() }}

{{__('Inactive Property')}}

{{ $properties->where('status',0)->count() }}

{{__('Total User')}}

{{ $users->count() }}

{{__('Total Subscriber')}}

{{ $subscriberQty }}
{{ __('Earning In') }} {{ date('F, Y') }}
@endadminCan