@extends('admin.layouts.app')
@section('title', 'Dashboard')
@section('heading', '')
@section('breadcrumb', 'Admin / Overview')
@section('content')
{{-- Page header --}}
Dashboard
Admin / Overview
{{-- Row 1: Primary metrics --}}
{{-- Row 2: Daily activity --}}
Today's Delivered
{{ number_format($todayDelivered) }}
Registration Requests
{{ number_format($registrationRequests) }}
Pending Customers
{{ number_format($pendingCustomers) }}
{{-- Row 3: Status chips --}}
{{-- Row 4: 30-day trends --}}
₹{{ number_format($monthRevenue, 0) }}
{{ number_format($newCustomers30Days) }}
{{ number_format($delivered30Days) }}
{{-- Charts + Activity --}}
Sales Overview — Last 7 days
Recent Activity
@forelse ($recentActivity as $activity)
-
@if (($activity['status'] ?? '') === 'Delivered')
@elseif (($activity['status'] ?? '') === 'Pending')
@elseif (($activity['status'] ?? '') === 'Cancelled')
@else
@endif
{!! $activity['message'] !!}
{{ $activity['date'] }}
@empty
- No recent activity found
@endforelse
{{-- Bottom charts --}}
Delivery Performance — Monthly
Income vs Expense — Current year
@endsection
@push('scripts')
@endpush