@extends('layouts.app') @section('title', 'Dashboard') @section('content')

Dashboard Overview

Welcome to your dashboard. Here is an overview of the platform.

{{-- Stats Cards --}}
Total Admins
{{ $totalAdminUsers }} Live on platform
Recent Dealers
Name
Email
Joined
Status
@foreach ($recentDealers as $dealer)
{{ $dealer->full_name }}
{{ $dealer->email }}
{{ $dealer->created_at->format('d M Y') }}
{{ $dealer->status->name }}
@endforeach
{{-- Total Customers --}}
Total Customers
{{ $buyersCount }} Active Buyers
{{-- Active Dealers --}}
Active Dealers
{{ $dealersCount }} Active Dealers
{{-- Active Listings --}}
Active Listings
{{ $activeListingsCount }} Live on platform
{{-- Pending Listings --}}
Pending Listings
{{ $pendingListingsCount }} Awaiting approval
{{-- Dex Users --}}
Dex Users
{{ $totalDexUser }} All Dex Users
{{-- Dx Customers --}}
Dx Customers
{{ $totalDxCustomer }} All Dx Customer
{{-- Charts --}}
User Growth Trend
New user registrations over the last 30 days
Listings by Status
Distribution of listing statuses
{{-- Recent Listings --}}
Recent Listings
Title
Owner
Price
Status
@foreach ($recentListings as $listing)
{{ $listing->owner->name ?? 'Unknown' }}
{{ number_format($listing->price, 2) }}
{!! $listing->status->badge() !!}
@endforeach
@endsection @push('scripts') @endpush