@php
$job_status = 'No Action Taken';
$color_code = '#1b25f9';
if($job->status == 1){
$job_status = 'Approved';
$color_code = '#659e03';
}else if($job->status == 0){
$job_status = 'Rejected';
$color_code = '#ff0000';
}
@endphp
{{ ucwords($job['job_title']) }}
{{$job_status}}
{{ $job['category']->industry_name ?? "Not Updated"}}
{{ HireMeeHelper::JobLocations($job->locations()->pluck('loc_id')->toArray()) }}
{{ $job['numberofpostion'].' Vacancy' ?? "Not Updated" }}
{{ HireMeeHelper::JobSkills($job->skills()->pluck('skill_id')->toArray()) }}
Gender Preference :
@php $genders = HireMeeHelper::JobGenders(); @endphp
{{ $genders[$job->gender] ?? "Not Updated" }}
@if($job->interview_process == 1)
Start Date : {{ $job->start_date }} End Date : {{ $job->end_date }}
@elseif($job->interview_process == 2)
Last Date : {{ $job->last_date }}.
@elseif($job->interview_process == 3)
Campus Drive Date : {{ \Carbon\Carbon::parse($job->assessment_date)->format('d-m-Y') }}.
@else
Date Not Updated
@endif
@if(!is_null($job->getNCSJobId))
NCS Job ID: {{$job->getNCSJobId ? $job->getNCSJobId->ncs_job_id : "--"}}
@endif
{{ $job['emptype']->type_name ?? "Not Updated" }}
Qualifications :
@if(!is_null($job['qualcationDetails']))
@if($job['course_type'] == 8)
Any Degree
@else
@foreach($job['qualcationDetails'] as $qualcation)
{{ $qualcation->degree->name ?? "Any Degree" }} - {{ $qualcation->specialization->specialization ?? "Any Specialization"}}
@endforeach
@endif
@else
Not Updated
@endif
Additional Preferred Skills :
@forelse($job->addtionalSkills as $add_skills)
{{ $add_skills->skill_details->name ?? "Not Updated" }}
@empty
{{ "Not Updated" }}
@endforelse
{!! $job['description'] !!}
@if(!is_null($job->languageDetails))
@endif
@if(!is_null($job->languageDetails))
@php $proficiency = ['1'=>'Expert','2'=>'Advanced','3'=>'Intermediate']; @endphp
@forelse($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
@empty
Not Updated
@endforelse
@endif
@php $other_requirements = explode(",",$job['other_requirements']); $serial_num = 1; @endphp
@if(!empty($other_requirements) || $job->interview_process==1)
Weekly Working Days :
{{ $job['job_working_days'] ?? "Not Updated" }}
Additional Comments :
{{ $job['job_working_off'] ?? "Not Updated" }}
Salary Type :
@if(!is_null($job['salary_type']))
@if($job['salary_type'] == 1) Annual CTC @else Monthly CTC @endif
@else
Not Updated
@endif
Salary :
@if(!is_null($job['salary_from']))
{{ $job['salary_from'] ?? "Not Updated"}} -
{{ $job['salary_to'] ?? "Not Updated"}}
@else
Not Updated
@endif
@if(!empty($job['other_requirements']))
Other Requirements :
@foreach($other_requirements as $requirements)
@if($requirements)
{{ $serial_num++ }}. {{ $requirements }}
@endif
@endforeach
@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)
@if($job->interview_process==1) Time slot @else College Name @endif :
@if($job->interview_process==1) {{ $job['start_time'] ?? "Not Updated" }} - {{ $job['to_time'] ?? "Not Updated" }} @else {{$job->driveDetails ? ($job->driveDetails->collegeName ? $job->driveDetails->collegeName->name : "Not Updated" ) : "Not Updated" }} @endif
@if($job->interview_process==1) Interview Days : @endif
@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)
@if(!is_null($job['interview_slots']))
@foreach($slot_days as $key => $slot_day)
{{$days[$slot_day]}} @if(!$loop->last && $slot_day != 7), @endif
@endforeach
@else
Not Updated
@endif
@endif
@if($job->interview_process==1)
Interview Location :
@if(!is_null($job->addressDetails))
@foreach($job->addressDetails as $address)
{{$loop->iteration}}. {{ $address->address ?? "Not Updated" }}@if(!$loop->last), @endif
@endforeach
@endif
@endif
@if($job->interview_process==1)
POC Details :
@if(!is_null($job->pocDetails))
@forelse($job->pocDetails as $pocdetails)
{{$loop->iteration}}. {{ $pocdetails->poc_name ?? "Not Updated" }} - {{ $pocdetails->poc_contact ?? "Not Updated" }}@if(!$loop->last), @endif
@empty
Not Updated
@endforelse
@else
Not Updated
@endif
@endif
@endif
@endif
Application Process
@if(!is_null($job['interview_process']))
You are processing the job post as {{ ($job['interview_process'] == '1') ? 'DIRECT WALKING INTERVIEW' : (($job['interview_process'] == '2') ? 'CHECK APPLICATIONS FIRST' : 'CAMPUS RECRUITMENT') }}
@else
APPLICATION PROCESS NOT YET UPDATED
@endif
Work Mode :
{{ $job_details->getWorkTypes->name ?? 'Not Updated' }}
@if(Request::get('view'))
@if( $type = Request::get('type'))
@if(Auth::guard('corporate')->user()->user_type == 1)
Back
@elseif(Auth::guard('corporate')->user()->user_type == 2)
Back
@endif
@else
@endif
@else
@endif