@extends('layouts.admin') @section('title', 'View Application') @section('header', 'Job Application Details') @section('content')

{{ $application->name }}

Applied for: {{ $application->position }}

{{ ucfirst($application->status) }}

Applicant Information

Full Name

{{ $application->name }}

Position Applied

{{ $application->position }}

Job Details

Career: {{ $application->career->title }}

Department: {{ $application->career->department ?? 'N/A' }}

Location: {{ $application->career->location }}

@if($application->message)

Cover Letter / Message

{{ $application->message }}
@endif

Resume / CV

@if($application->resume_path)

Resume uploaded

{{ basename($application->resume_path) }}

Download
@else

No resume uploaded

@endif

Application Timeline

Applied 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') }}

@endif

Last updated: {{ $application->updated_at->format('F d, Y \a\t h:i A') }}

Update Status

@csrf @method('PUT')
@if($application->notes)

Admin Notes

{{ $application->notes }}
@endif
@csrf @method('DELETE')
@endsection