@extends('layouts.admin')
@section('title', 'Job Opening Details')
@section('content_header')
Job Opening Details
@stop
@section('content')
- Title
- {{ $job->title }}
- Experience Required
- {{ $job->experience_required ?: 'Not specified' }}
- Location
- {{ $job->location ?: 'Not specified' }}
- Short Description
- {{ $job->short_description ?: 'Not provided' }}
- Requirements
-
@if($job->requirement)
{{ $job->requirement }}
@else
Not provided
@endif
- Status
-
@if($job->is_active)
Active
@else
Inactive
@endif
- Created At
- {{ $job->created_at->format('M d, Y H:i') }}
- Updated At
- {{ $job->updated_at->format('M d, Y H:i') }}
@stop
@section('css')
{{-- Add any specific CSS for this page --}}
@stop
@section('js')
{{-- Add any specific JS for this page --}}
@stop