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

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

Recent activity

@forelse ($applications as $application)
{{ substr(optional(optional($application->posting)->employer)->name ?? 'E', 0, 1) }}

{{ optional($application->posting)->title }}

{{ optional(optional($application->posting)->employer)->name }}

Applied {{ optional($application->applied_at)->diffForHumans() ?? 'n/a' }}

{{ ucfirst($application->status) }}
@empty

No applications yet

Start applying to jobs to see them here

@endforelse

Featured Jobs

Recommended opportunities

@forelse ($featuredJobs as $job)
{{ substr(optional($job->employer)->name ?? 'E', 0, 1) }}

{{ $job->title }}

{{ $job->location }} ยท {{ $job->employment_type ?? 'Flexible' }}

{{ optional($job->employer)->name }}

View Job
@empty

No featured jobs available

Check back later for new opportunities

@endforelse
@endsection