@extends('admin.layouts.home') @section('title', 'Job Applications') @section('content')
| ID | Applicant | Applied On | Resume | Status | Actions | |
|---|---|---|---|---|---|---|
| {{ $application->id }} | {{ $application->user->name ?? 'N/A' }} | {{ $application->user->email ?? 'N/A' }} | {{ $application->created_at->format('M d, Y') }} | @if($application->resume_path) View Resume @else N/A @endif | {{ ucfirst($application->status) }} |
|
| No applications found | ||||||