@extends('hiremee-revamp.layouts.main-layout') @section('pageTitle', ' List of Job Openings - HireMee') @section('content') @php $url = (URL::previous() == url('/').'/' || url('company').'/'.str_slug($job->getCompanyprofile->company_name)) ? url('jobs-list') : URL::previous(); $route_name = \Request::route()->getName(); $route_name = ($route_name != '')?$route_name:'job-detail'; if($route_name == 'job-detail' || $route_name == 'temp-jobs-list'){ $breadcrumb = 'Jobs'; $url = url('company/'.str_slug($job->getCompanyprofile->company_name).'/jobs-list'); } else if($route_name == 'walk-in-detail' || $route_name == 'temp-walk-in-drives'){ $breadcrumb = 'Walk-in Drives'; $url = url('company/'.str_slug($job->getCompanyprofile->company_name).'/walk-in-drives'); } else { $breadcrumb = 'Campus Drives'; $url = url('company/'.str_slug($job->getCompanyprofile->company_name).'/campus-drives'); } @endphp {!! Form::hidden('job_id', $job['id'],['id'=>'job_id']) !!}

{{ $job['job_title'] }}

@php if(empty($job->getCompanyprofile())){ @endphp {{ "Not Updated" }} @php } elseif($job->getCompanyprofile->company_name == 'Others'){ @endphp {{ $job->getCompanyprofile->company_name}} @php } else{ @endphp getCompanyprofile->company_name)) }}" target="blank">{{$job->getCompanyprofile->company_name ?? "Not Updated"}} @php } @endphp
@php $location = App\Helper\HireMeeRevampHelper::JobLocationsCitywiseArray($job->locations()->pluck('loc_id')->toArray()); $location = implode(", ",array_map('trim', $location)); @endphp {{ !empty($location)?$location : 'Not Updated' }} Posted: @php echo HireMeeHelper::timeElapsedString($job['created_at']);@endphp No. Of Positions: {{ $job['numberofpostion'] ?? "Not Updated" }}
@php $apply_flag = 0; if($job->interview_process == 2 || (!empty($job->candidateFormMapping))){ $apply_flag = 1; } $apply_flag = 1; @endphp @if($apply_flag && $job->status == 1) @endif @if($apply_flag && $job->status != 1)
This job is awaiting approval
@endif

Job Description

{!! (ucfirst($job->description)) !!}
  • Work location : {{ !empty($location)?$location : 'Not Updated' }}
  • Work Mode : {{ $job_details->getWorkTypes->name ?? 'Not Updated' }}
  • Job Requirements :{{ $job['numberofpostion'] ?? "Not Updated" }}
  • Educational Qualification : {{ $job->coursetype->name ?? "Not Updated" }}
@php $other_requirements = explode(",",$job['other_requirements']); $serial_num = 1; @endphp @if(!empty($other_requirements))

Additional Information

    @foreach($other_requirements as $requirements) @if(!empty($requirements))
  • {{ $requirements }} @else Not Updated @endif
  • @endforeach
@endif @foreach($walkin_address->where('interview_process',1) as $key=>$address)

Walk-in Details

@foreach($address->pocDetails as $key => $poc)
  • Contact Name: {{ $poc->poc_name ?? "Not Updated" }}
  • Contact Number: {{ $poc->poc_contact ?? "Not Updated"}}
@endforeach
@foreach($address->addressDetails as $key => $address)
  • Address:
  • {{ $address->address ?? "Not Updated"}}
  • City: {{ $address->cityDetails->district ?? "Not Updated"}}
  • State: {{ $address->stateDetails->name ?? "Not Updated"}}
@endforeach
@endforeach @foreach($campus_details->where('interview_process',3) as $key=>$campus_details)

Campus Details

  • College Name: {{$campus_details->college_name ?? "Not Updated"}}
  • Date: {{Carbon\Carbon::parse($campus_details->assessment_date)->format('d-m-Y') ?? "Not Updated" }}
@endforeach

Other Details

  • Weekly Working Days: {{ $job['job_working_days'] ?? "Not Updated" }}
  • OFF Days Comment: {{ $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

Other Description

    @php $industry_type = $job['category']->industry_name ?? 'Not Updated'; if($job->getCompanyprofile->company_name == "Others"){ $industry_type = $role_category = 'Others'; } @endphp
  • Industry Type: {{ $industry_type}}
  • Employment Type: {{$job->emptype->type_name ?? "Not Updated"}}
  • Role Category: {{ $industry_type }}

Education

@if($job['course_type'] == 8) @else @if(!is_null($job['qualcationDetails']) && count($job['qualcationDetails']) != 0 ) @foreach($job['qualcationDetails'] as $qualification)
  • {{ $qualification->degree->name ?? "Any Degree" }}
  • {{ $qualification->specialization->specialization ?? "Any Specialization"}}
@endforeach @endif @endif

Key Skills

    @if(!empty($job->allskills())) @php $skills = HireMeeHelper::JobSkills($job->allskills()->pluck('skill_id')->toArray()); $skills = explode(',', $skills); @endphp @foreach($skills as $skill)
  • {{ $skill }}
  • @endforeach @else
  • Not Updated
  • @endif

About Company

{{(!empty($job->getCompanyprofile->about_summery)?$job->getCompanyprofile->about_summery:"Not Updated")}}

Company Info

  • Address : {{$job->getCompanyprofile->comm_address}}
    @include('partials.social-media-details')
@include('partials.job-disclaimer')

For College Placement Assessment Support

@include('hiremee-revamp.quick-connect',['submit_form_type'=>'job_details_assessment_college','request_type'=>32,'csubject'=>6,'button_txt'=>"Submit",'submit_but_id'=>'desktop_demo_button','formid'=>'js_demorequest_form','class'=>'btn btn-primary pull-right'])
@include('hiremee-revamp.candidate.job-apply-modal',['formid'=>'candidate-job-apply-modal']) @endsection