@extends('layouts.dashboard') @section('title', 'My Applications') @section('content')
| Job Title | Company | Applied On | Status | Action |
|---|---|---|---|---|
{{ $app->job->title }} |
{{ $app->job->company->name ?? 'Unknown Company' }} | {{ $app->created_at->format('d M, Y') }} | @if($app->status == 'pending') Pending Review @elseif($app->status == 'accepted') Accepted @else Rejected @endif | |
No Applications FoundYou haven't applied to any jobs yet. Browse Jobs |
||||