@extends("layouts.main") @section('title', $pageTitle) @section("content")

{{ $job['job_title'] }}

@if(!is_null($job->checkjob)) Job applied @endif
Please wait, Loading...

{{ $job['category']->industry_name ?? ""}}
Company Name : {{ $job->getCompanyprofile ? $job->getCompanyprofile->company_name : 'Not updated'}},
Skill : {{ HireMeeHelper::JobSkills($job->skills()->pluck('skill_id')->toArray()) }}
Job Location : {{ HireMeeHelper::JobLocations($job->locations()->pluck('loc_id')->toArray()) }}.
No of Openings : @if( $job['numberofpostion'] !=0) @else @endif
Gender Preference : @php $genders = HireMeeHelper::JobGenders(); @endphp
Last date to apply:

Qualification

@foreach($job['qualcationDetails'] as $qualcation) @endforeach
@forelse($job->addtionalSkills as $add_skills) @empty @endforelse

Complete Job Description

{!! $job['description'] ?? "-" !!}

Language Known

@if(count($job->languageDetails) == 0 ) Not Updated @else @php $proficiency = ['1'=>'Expert','2'=>'Advanced','3'=>'Intermediate']; @endphp @foreach($job->languageDetails as $lang)
@if($lang->speak) @endif @if($lang->read) @endif @if($lang->write) @endif
@endforeach @endif

Other Details

@php $salary_type = HireMeeHelper::JobSalary(); @endphp @if(!empty($salary_type[$job['salary_type']]))
@if(number_format($job['salary_from']) !=0 && number_format($job['salary_to']) !=0) @else @endif
@endif @php $other_requirements = explode(",",$job['other_requirements']); $serial_num = 1; @endphp @if(!empty($other_requirements))
@endif
{!! Form::hidden('ncs_job_id',Request::get('jobid'),array('id'=>'jobid')) !!} @if(is_null($job->checkjob)) @endif
@endsection @section('footer') @endsection