@extends('layouts.seeker') @section('title', 'Applied Jobs — JOBES') @section('seeker_content')
Applied Jobs
@if($applications->count())
@foreach($applications as $app) @endforeach
Job Title Company Location Status Applied On
{{ $app->jobListing->title ?? 'N/A' }}
{{ $app->jobListing->salary_range ?? 'N/A' }}
{{ $app->jobListing->company->name ?? '—' }} {{ $app->jobListing->location->city ?? $app->jobListing->city ?? 'Remote' }} @php $statusLabel = match($app->status) { 'shortlisted','offered','hired' => 'interview', 'rejected' => 'canceled', 'reviewed' => 'viewed', default => 'viewed' }; $statusColor = match($statusLabel) { 'viewed' => 'background:#a855f7; color:#fff;', 'interview' => 'background:#f59e0b; color:#fff;', 'canceled' => 'background:#ef4444; color:#fff;', default => 'background:#cbd5e1; color:#475569;' }; if ($app->status === 'pending') { $statusLabel = 'pending'; $statusColor = 'background:#64748b; color:#fff;'; } @endphp {{ $statusLabel }} {{ $app->created_at->format('d M Y') }}
{{ $applications->links() }}
@else
📋
No Applications Yet

Start applying to your dream jobs today!

Browse Jobs
@endif
@endsection