{{-- Header Card --}}
Customer Dashboard
Browse Service
{{-- Stat Cards --}}
Total Applications

{{ $totalApplications }}

Answered

{{ $answeredApplications }}

Pending

{{ $pendingApplications }}

{{-- Recent Applications Table --}}
Recent Applications
View All
@forelse($recentApplications as $index => $app) @empty @endforelse
# Service Name Status Submitted On
{{ $index + 1 }}
{{ optional($app->service)->getLocalized('name') ?? 'N/A' }}
{{ ucfirst($app->status) }} {{ $app->created_at->format('M d, Y') }}
{{ $app->created_at->diffForHumans() }}

No applications found

{{-- Chart.js Script --}} @section('scripts') @endsection