@extends('portal.applicant_dashboard') @section('applicant')
{{-- Applications Submitted --}}
Applications Submitted

{{ $appliedJobsCount ?? 0 }}

View Applications →
{{-- Applications In Review --}}
In Review

{{ $inReviewJobsCount ?? 0 }}

Track Status →
{{-- Applications Approved / Shortlisted --}}
Shortlisted

{{ $shortlistedJobsCount ?? 0 }}

View Status →
{{-- Jobs Available --}}
Jobs Available

{{ $jobs_available ?? 0 }}

Browse Jobs →

Available Jobs

{{-- Responsive Table --}}
@foreach($jobs as $index => $job) @endforeach @if($jobs->isEmpty()) @endif
# Job Title Department Status Actions
{{ $index + 1 }} {{ $job->job_title }} {{ Str::limit($job->department, 120) }} @if(in_array($job->id, $appliedJobIds)) Applied @else Open @endif View @if(in_array($job->id, $appliedJobIds)) @else Apply @endif
No jobs available at the moment.
@endsection