@extends('portal.applicant_dashboard') @section('applicant')
Submitted Applications
@if($applications->count() == 0)

You have not applied for any jobs yet.

@else
@foreach($applications as $app) @endforeach
Job Title Department Date Applied Status CV File
{{ $app->job->job_title ?? 'N/A' }} {{ $app->job->department ?? 'N/A' }} {{ $app->created_at->format('d M, Y') }} {{ ucfirst($app->status ?? 'submitted') }} @if($app->cv_file) Download CV @else No file @endif
@endif
@endsection