@extends('layouts.admin') @section('title', 'View Application') @section('header', 'Job Application Details') @section('content')
Applied for: {{ $application->position }}
{{ $application->name }}
{{ $application->position }}
Career: {{ $application->career->title }}
Department: {{ $application->career->department ?? 'N/A' }}
Location: {{ $application->career->location }}
Resume uploaded
{{ basename($application->resume_path) }}
No resume uploaded
@endifApplied on: {{ $application->created_at->format('F d, Y \a\t h:i A') }}
@if($application->reviewed_at)Reviewed on: {{ $application->reviewed_at->format('F d, Y \a\t h:i A') }}
@endifLast updated: {{ $application->updated_at->format('F d, Y \a\t h:i A') }}