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

Career Details

@php $career = $apiData['data']; @endphp
{{ $career['title'] }}
@if($career['is_urgent']) Urgent @endif @if($career['is_active']) Active @else Inactive @endif
Department

{{ ucfirst($career['department']) }}

Location

{{ $career['location'] }}

Employment Type

{{ str_replace('_', ' ', ucfirst($career['employment_type'])) }}

@if($career['salary_range'])
Salary Range

{{ $career['salary_range'] }}

@endif
Job Description
{!! nl2br(e($career['description'])) !!}
Requirements
{!! nl2br(e($career['requirements'])) !!}
@if($career['benefits'])
Benefits
{!! nl2br(e($career['benefits'])) !!}
@endif
Application Information
Application Deadline
{{ \Carbon\Carbon::parse($career['application_deadline'])->format('F d, Y') }} @if(\Carbon\Carbon::parse($career['application_deadline'])->isPast()) Expired @else Active @endif
Applications Received
{{ $career['applications_count'] ?? 0 }} applications
Quick Actions
Edit Career
@csrf @method('DELETE')
Copy Public Link
@push('scripts') @endpush @endsection