@extends('components.dashboard.layouts.master') @section('title') {{__('dashboard.dashboard')}} @endsection @section('styles') @stack('datatableStyles') @endsection @section('content')
{{-- Page Title --}}

{{ __('dashboard.dashboard') }}

{{-- Top Stats Cards --}}
{{-- Clients Count --}}

{{ \App\Models\User::where('type', \App\Enum\UserTypeEnum::CLIENT)->count() }}

{{ __('dashboard.users') ?? 'Users' }}

{{-- Orders Count --}}

{{ \App\Models\Order::count() }}

{{ __('dashboard.orders') ?? 'Orders' }}

{{-- Special Orders --}}

{{ \App\Models\SpecialOrder::count() }}

{{ __('dashboard.special_orders') ?? 'Special Orders' }}

@endsection