@extends('layouts.user') @section('title', 'Healthcare Worker Dashboard') @section('content')

Healthcare Worker Dashboard

Manage your applications and explore opportunities

Applied Jobs

{{ $metrics['applied'] ?? 0 }}

Active applications

Available Jobs

{{ $metrics['jobs'] ?? 0 }}

Ready to apply

Profile Views

{{ $metrics['profileViews'] ?? 0 }}

Recent interest

My Applications

View all
@forelse ($applications as $application)
{{ optional($application->posting)->title }}
{{ optional(optional($application->posting)->employer)->name }}
Applied: {{ optional($application->applied_at)->format('M j, Y') ?? 'n/a' }}
{{ $application->status }}
@empty

No applications yet.

@endforelse

Featured Jobs

Browse all
@forelse ($featuredJobs as $job)
{{ $job->title }}
{{ $job->location }} ยท {{ $job->employment_type ?? 'Flexible' }}
{{ optional($job->employer)->name }}
View
@empty

No featured jobs available.

@endforelse
@endsection