@extends("layouts.main") @section('title', $pageTitle) @section("content")
Please wait, Loading...
@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']) }}





Gender Preference : @php $genders = HireMeeHelper::JobGenders(); @endphp
@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

Qualification

@if(!is_null($job['qualcationDetails'])) @if($job['course_type'] == 8) @else @foreach($job['qualcationDetails'] as $qualcation) @endforeach @endif @else @endif
@forelse($job->addtionalSkills as $add_skills) @empty @endforelse

Job Description

{!! $job['description'] !!}
@if(!is_null($job->languageDetails))

Language Known

@endif
@if(!is_null($job->languageDetails)) @php $proficiency = ['1'=>'Expert','2'=>'Advanced','3'=>'Intermediate']; @endphp @forelse($job->languageDetails as $lang)
@if($lang->speak) @endif @if($lang->read) @endif @if($lang->write) @endif
@empty
@endforelse @endif
@php $other_requirements = explode(",",$job['other_requirements']); $serial_num = 1; @endphp @if(!empty($other_requirements) || $job->interview_process==1)

Other Details

@if(!empty($job['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)
@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

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

    @include('partials.social-media-details')
@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
{!! Form::hidden('page_number',$page_number) !!} {!! Form::hidden('job_id',$job->id) !!} {!! Form::hidden('job_status',1) !!}
@if(in_array($job->status,[5,2])) @endif @if(in_array($job->status,[1,5,2])) Reject @endif
@endif
@include('website.cms-utilities.sales-jobs.admin-approve-reject-comment-modal') @endsection