@extends('frontend.layouts.web') @section('content')

{{$CareerJobDetail->designation}}

{{-- short detail with icon --}}

@if($CareerJobDetail->campus == 'Sargodha Road University Town, Faisalabad') Health Science @elseif($CareerJobDetail->campus == 'West Canal Road, Faisal Town') Engineering @else Health Science | Engineering @endif

{{$CareerJobDetail->job_type}}

{{ Carbon\Carbon::parse($CareerJobDetail->created_at)->diffForHumans()}}

@foreach($jobDepartment as $dptName) @if($dptName->id == $CareerJobDetail->dpt_id) {{$dptName->name}} @endif @endforeach

{{-- short detail with table --}}

Salary

{{$CareerJobDetail->salary}}

Shift

{{$CareerJobDetail->job_type}}

Qualifications

@if(isset($CareerJobDetail['jobQua']['name']))
{{$CareerJobDetail['jobQua']['name']}}
@endif

Nonumber of Vacancies

{{$CareerJobDetail->job_type}}

Experience

{{$CareerJobDetail->experience}}

Job Level

{{$CareerJobDetail->job_level}}
{{-- short detail with description --}}

Job Description

@foreach($jobJD as $jd) @if($jd->id == "$CareerJobDetail->jobjd_id" ) {!! $jd->job_description !!} @endif @endforeach

Job Requirements

@foreach($jobJD as $jd) @if($jd->id == "$CareerJobDetail->jobjd_id" ) {{$jd->requirement}} @endif @endforeach
{{-- side bar end here --}}
@endsection