@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(); @endphp {!! Form::hidden('job_id', $job['id'],['id'=>'job_id']) !!}

{{ $job['job_title'] }}

@php if(empty($job->getCompanyprofile())){ @endphp {{ "Not Updated" }} @php } else{ @endphp getCompanyprofile->company_name)) }}">{{$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" }}

Job Description

    {!! (ucfirst($job->description)) !!}
  • Work location : {{ !empty($location)?$location : 'Not Updated' }}
  • Job Requirements :{{ $job['numberofpostion'] ?? "Not Updated" }}
  • Educational Qualification : {{ $job->coursetype->name ?? "Not Updated" }}
  • @if(!empty($other_requirements)) Additional Information : @foreach($other_requirements as $requirements) @if(!empty($requirements))
  • {{ $serial_num++ }}. {{ $requirements }} @else Not Updated @endif
  • @endforeach @endif

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

  • Role: {{ $job['designation'] ?? "Not Updated" }}
  • @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(!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

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}}

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