@extends('layouts.front-page') @section('pageTitle', 'About HireMee') @section('content')
@if($is_expired == 1)

Sorry, this job no longer accepting applications. please click the link for more jobs that match what you're looking for!

@else

{{ ucwords($job['job_title']) }}

{{ $job['category']->industry_name ?? "Not Updated"}}

@if(!empty($job->getCompanyprofile)) Company Name : {{ $job->getCompanyprofile->company_name }} @else Company Name : Not Updated @endif

@if(!empty($job->skills())) Skills : {{ HireMeeHelper::JobSkills($job->skills()->pluck('skill_id')->toArray()) }} @else Skills : Not Updated @endif

Job Location : {{ HireMeeHelper::JobLocations($job->locations()->pluck('loc_id')->toArray()) }}

No. of Openings : @if($job['numberofpostion'] !=0) {{ $job['numberofpostion'] }} @else Not updated @endif

@php $genders = HireMeeHelper::JobGenders(); @endphp

Gender Preference :{!! $genders[$job->gender] ?? "No Preference" !!}

@if($job->interview_process==2)

Last date to Apply : {{ Carbon\Carbon::parse($job->last_date)->format('dS M Y') }}
@elseif($job->interview_process==1)
Walk-in date : {{ Carbon\Carbon::parse($job->start_date)->format('dS M Y') }} to {{ Carbon\Carbon::parse($job->end_date)->format('dS M Y') }}
@elseif($job->interview_process==3)
Campus drive Date : {{ Carbon\Carbon::parse($job->assessment_date)->format('dS M Y') }}
@endif

@if(!empty($job['emptype']))

{{ !empty($job['emptype']) ? $job['emptype']->type_name : "Not Updated" }}

@endif
@if(\Auth::check()) {!! Form::open(['url' => 'job/front-view/login-submit','method'=>'GET','id'=>'candidate-job-submit']) !!} {{ Form::hidden('jobid',(!empty($job['id']))?$job['id']:0,['id'=>'js-jobid-front']) }} {!! Form::close() !!} @else @endif
Qualification
Mandatory Qualification :
{{ $job->coursetype->name ?? "Not Updated" }}
Qualifications :
@if(!is_null($job['qualcationDetails']) && count($job['qualcationDetails']) != 0 ) @foreach($job['qualcationDetails'] as $qualcation) {{ $qualcation->degree->name ?? "Any Degree" }} - {{ $qualcation->specialization->specialization ?? "Any Specialization"}} @endforeach @else @endif
Additional Prefered Skills :
@forelse($job->addtionalSkills as $add_skills) {{ !empty($add_skills->skill_details)?$add_skills->skill_details->name :'-' }} @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)
{{ $lang->language->languages }} ( Proficiency - {{ $proficiency[$lang->proficiency] }} ) :
@if($lang->speak) Speak @endif @if($lang->read) Read @endif @if($lang->write) Write @endif
@endforeach
@endif
@php $other_requirements = explode(",",$job['other_requirements']); $serial_num = 1; @endphp @if(!empty($other_requirements) || $job->interview_process==1)
Other Details
Weekly working Days :
{{ $job['job_working_days'] ?? "Not Updated"}}
OFF days Comment :
{{ $job['job_working_off'] ?? "Not Updated" }}
@php $salary_type = HireMeeHelper::JobSalary(); @endphp @if(!empty($salary_type[$job['salary_type']]))
@if(!is_null($job['salary_type']))
@if($job['salary_type'] == 1) Annual CTC @else Monthly CTC @endif
@else
Salary:
@endif @if(number_format($job['salary_from']) !=0 && number_format($job['salary_to']) != 0 )
{{ number_format($job['salary_from']) }} - {{ number_format($job['salary_to']) }}
@else
Not Updated
@endif
@if(!empty($other_requirements))
Other Requirements :
@foreach($other_requirements as $requirements) @if(!empty($requirements))

{{ $serial_num++ }}. {{ $requirements }}


@else Not Updated @endif @endforeach
@endif @endif
@endif
@if($job->interview_process==1 || $job->interview_process==3)
@if($job->interview_process==3) Campus Details @else Walkin Details @endif
@if($job->interview_process==1 || $job->interview_process==3)
@php if(!is_null($job['interview_slots'])){ $days = [ 1 => 'Monday', 2 => 'Tuesday', 3 => 'Wednesday', 4 => 'Thursday', 5 => 'Friday', 6 => 'Saturday', 7 => 'Sunday', 8 => '' ]; $slot_days = explode(",",$job['interview_slots']); } @endphp
@if($job->interview_process==1)
@endif @if($job->interview_process==1)
@endif @endif
@endif
@if(\Auth::check()) {!! Form::open(['url' => 'job/front-view/login-submit','method'=>'GET','id'=>'candidate-job-submit']) !!}
Back {{ Form::hidden('jobid',(!empty($job['id']))?$job['id']:0,['id'=>'js-jobid-front']) }}
{!! Form::close() !!} @else
Back
@endif
@endif @include('candidate.jobs.candidate-job-login')