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

{{ $career->title }}

Slug: {{ $career->slug }}

{{ $career->is_active ? 'Active' : 'Inactive' }}
Applications

{{ $career->applications->count() }}

Department

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

Employment Type

{{ ucfirst($career->employment_type) }}

Valid Through

{{ $career->valid_through ? $career->valid_through->format('M d, Y') : 'No expiry' }}

Location

Short: {{ $career->location }}

@if($career->job_location)

Full: {{ $career->job_location }}

@endif

Contact

@if($career->contact_email)

Email: {{ $career->contact_email }}

@endif @if($career->contact_phone)

Phone: {{ $career->contact_phone }}

@endif

Job Details

@if($career->education)
Education

{{ $career->education }}

@endif @if($career->industry)
Industry

{{ $career->industry }}

@endif @if($career->working_hours)
Working Hours

{{ $career->working_hours }}

@endif @if($career->salary_range)
Salary Range

{{ $career->salary_range }}

@endif
@if($career->skills)
Skills:

{{ $career->skills }}

@endif

Description

{{ $career->description }}
@if($career->responsibilities)

Responsibilities

{{ $career->responsibilities }}
@endif @if($career->requirements)

Requirements

{{ $career->requirements }}
@endif @if($career->benefits)

Benefits

{{ $career->benefits }}
@endif

Public URL

@csrf @method('DELETE')

Applications ({{ $career->applications->count() }})

View All Applications →
@if($career->applications->count() > 0) @foreach($career->applications->take(5) as $application) @endforeach
Applicant Position Status Applied Actions
{{ $application->name }}
{{ $application->email }}
{{ $application->position }} {{ $application->status_label }} {{ $application->created_at->format('M d, Y') }} View
@if($career->applications->count() > 5) @endif @else

No applications yet.

@endif
@endsection