{{-- Header Card --}}
Admin Dashboard
{{-- Stat Cards --}}
Total Applications

{{ $totalApplications }}

Answered

{{ $answeredApplications }}

Pending

{{ $pendingApplications }}

{{-- Chart --}}
Application Status Overview
{{-- Recent Applications Table --}}
Recent Applications
@forelse($recentApplications as $index => $app) @empty @endforelse
# Service Name Status Submitted On
{{ $index + 1 }} {{ $app->service->name }} {{ ucfirst($app->status) }} {{ $app->created_at->format('Y-m-d') }}
No applications found.
{{-- Chart.js Script --}} @section('scripts') @endsection