@include('layouts.talentHeader')
Components
@php ($startActive = '') @php ($recActive = '') @php ($jobActive = '') @php ($detActive = '') @php ($quaActive = '') @php ($sumActive = '') @if(old('next') && old('next') == 'recruit') @php ($recActive = 'active') @elseif(old('next') && old('next') =='start') @php ($startActive = 'active') @elseif(old('next') && old('next') == 'job') @php ($jobActive = 'active') @elseif(old('next') && old('next') == 'details') @php ($detActive = 'active') @elseif(old('next') && old('next') == 'quali') @php ($quaActive = 'active') @elseif(old('next') && old('next') == 'summary') @php ($sumActive = 'active') @else @php ($startActive = 'active') @endif @php ($job_id = old('job_id') )
Start
@if($job_id != null)
Recruiting Information
Job
Job Details
Qualifications
Summary
@endif
@if(old('currentJob')) @php ($cjob = old('currentJob')) @else @php ($cjob = array()) @endif
New Job Requisition
@csrf
Start
@if(old('currentJob')) @php($posting_type = $cjob['posting_type']) @else @php($posting_type = '') @endif
Posting Type
Select Type
Confidential
Open
Others
Number of Vacancy
Client
Cleint Name
Select Client
@php($clientId = old('currentJob')?$cjob['client_id']:'') @if($clients) @foreach($clients as $client) @foreach($client->regionalCountries as $country) @foreach($country->countryBranches as $branches) @if($branches->office_type_id == 9)
id)? "selected":""}}>{{$branches->branch_name}}
@endif @endforeach @endforeach @endforeach @endif
Client Hiring Manager
Select
@if($clientId) @php($client_user_id = old('currentJob')?$cjob['client_user_id']:'') @php($clientEmp = (new \App\Http\Controllers\EmployeeController())->fetchClientEmp($clientId)) @foreach($clientEmp as $cEmp)
id)? "selected":""}}>{{$cEmp->name}}
@endforeach @endif
Client HR Manager
Select
@if($clientId) @php($client_hr_id = old('currentJob')?$cjob['client_hr_id']:'') @php($clientHR = (new \App\Http\Controllers\EmployeeController())->fetchClientEmp($clientId)) @foreach($clientHR as $cEmp)
id)? "selected":""}}>{{$cEmp->name}}
@endforeach @endif
Second HR Manager
Select
{{--@if($clientId) @php($client_hr2_id = old('currentJob')?$cjob['client_hr2_id']:'') @php($clientHR = (new \App\Http\Controllers\EmployeeController())->fetchClientEmp($clientId)) @foreach($clientHR as $cEmp)
id)? "selected":""}}>{{$cEmp->name}}
@endforeach @endif--}} @php($client_hr2_id = old('currentJob')?$cjob['client_hr2_id']:'') @if($clients) @foreach($clients as $client) @foreach($client->regionalCountries as $country) @foreach($country->countryBranches as $branches) @foreach($branches->users as $user) @if($user->user_level_id == 4)
id)?"selected":""}}>{{$user->name}} - {{$branches->branch_name}}
@endif @endforeach @endforeach @endforeach @endforeach @endif
Approval By
Department
Select Department
@php($apDeptId = old('currentJob')?$cjob['approval_department_id']:'') @if($departments) @foreach($departments as $department)
id)? "selected":""}}>{{$department->department}}
@endforeach @endif
@error('approval_department_id')
{{ $message }}
@enderror
Role
Select Role
@if($apDeptId) @php($apRId = old('currentJob')?$cjob['approval_role_id']:'') @php($roles = (new \App\Http\Controllers\CompanyController())->getRolesByDepartment($apDeptId)) @foreach($roles as $role)
id)? "selected":""}}>{{$role->role}}
@endforeach @endif
@error('approval_role_id')
{{ $message }}
@enderror
Approval By
Approval By
@php($apreportTo = old('currentJob')?$cjob['approval_by_id']:'') @if($apreportTo) @php ($apRepName = \App\User::where(['id' => $apreportTo])->first() )
{{$apRepName->name}}
@endif
@error('approval_by_id')
{{ $message }}
@enderror
@csrf
Recruiting Information
Reason
Replacement For
Start Date
@php($cDate = date('d-m-Y')) @php($eDate = date('d-m-Y', strtotime("+30 days")))
Approval Date
End Date
Save & Continue
Reset
@csrf
Job
Job Type
Select Job Type
@php($jobTypeId = old('currentJob')?$cjob['job_type_id']:'') @foreach($jobtypes as $jobtype)
id == $jobTypeId)?'selected':''}}>{{$jobtype->job_type}}
@endforeach
Industry
Select Job Industry
@php($industryId = old('currentJob')?$cjob['job_industry_id']:'') @foreach($jobindustries as $jobindustry)
id == $industryId)?'selected':''}}>{{$jobindustry->industry}}
@endforeach
Job Category
Select Category
@php($categoryId = old('currentJob')?$cjob['job_category_id']:'') @foreach($jobcategories as $jobcategory)
id == $categoryId)?'selected':''}}>{{$jobcategory->category}}
@endforeach
Job Role
Select Job Role
@if($categoryId) @php($roleId = old('currentJob')?$cjob['job_role_id']:'') @php($roles = \App\JobCategory::find($categoryId)->jobroles) @foreach($roles as $role)
id == $roleId)?'selected':''}}>{{$role->job_role}}
@endforeach @endif
Job Title
Experience
Select Experience
@php($experienceId = old('currentJob')?$cjob['job_experience_id']:'') @foreach($jobexperiences as $experience)
id == $experienceId)?'selected':''}}>{{$experience->experience}}
@endforeach
Skills
@if(old('currentJob') && $cjob['job_skillsReqd']) @php($skills = explode(',', $cjob['job_skillsReqd'])) @foreach($jobskills as $jobskill) @if(in_array($jobskill->skill, $skills))
{{$jobskill->skill}}
@else
{{$jobskill->skill}}
@endif @endforeach @else @foreach($jobskills as $jobskill)
{{$jobskill->skill}}
@endforeach @endif
Save & Continue
Reset
@csrf
Job Details
Description
{{old('currentJob')?$cjob['job_description']:''}}
Country
Select Country
@php($job_country_id = old('currentJob')?$cjob['job_country_id']:'') @foreach($countries as $country)
id == $job_country_id ? 'selected' : '')}}>{{$country->name}}
@endforeach
State
Select State
@if($job_country_id) @php($job_state_id = old('currentJob')?$cjob['job_state_id']:'') @php($states = \App\Country::find($job_country_id)->states) @foreach($states as $state)
id == $job_state_id?'selected':'')}}>{{$state->name}}
@endforeach @endif
City
Select City
@if(isset($job_state_id)) @php($job_city_id = old('currentJob')?$cjob['job_city_id']:'')) @php($cities = \App\State::find($job_state_id)->cities) @foreach($cities as $city)
id == $job_city_id ?'selected':'')}}>{{$city->name}}
@endforeach @endif
Salary Upto
Currency
@php($job_currencyId = old('currentJob')?$cjob['job_currency_id']:3) @foreach($currency as $currencies)
id == $job_currencyId ?'selected':'')}}>{{$currencies->currency}}
@endforeach
Mercer Job Code
Job Details File Upload
Save & Continue
Reset
@csrf
Qualifications
Educational Qualification
@if(old('currentJob') && $cjob['job_qualification']) @php($qualifications = explode(',', $cjob['job_qualification'])) @foreach($qualification as $education) @if(in_array($education->qualification, $qualifications))
{{$education->qualification}}
@else
{{$education->qualification}}
@endif @endforeach @else @foreach($qualification as $education)
{{$education->qualification}}
@endforeach @endif
Specialisation
Language
@if(old('currentJob') && $cjob['job_languages']) @php($languages = explode(',', $cjob['job_languages'])) @foreach($joblanguages as $joblanguage) @if(in_array($joblanguage->language, $languages))
{{$joblanguage->language}}
@else
{{$joblanguage->language}}
@endif @endforeach @else @foreach($joblanguages as $joblanguage)
{{$joblanguage->language}}
@endforeach @endif
Professional Qualification
@if(old('currentJob') && $cjob['job_certification']) @php($certifications = explode(',', $cjob['job_certification'])) @foreach($certification as $certificate) @if(in_array($certificate->certification, $certifications))
{{$certificate->certification}}
@else
{{$certificate->certification}}
@endif @endforeach @else @foreach($certification as $certificate)
{{$certificate->certification}}
@endforeach @endif
Save & Continue
Reset
@csrf
Summary
Number of Reports
Direct Report
Dotted Line Report
Preview
Recruiting Information
×
No. of Vacancy:
Posting Type:
Requisitioned By:
Department:
Position:
Approval By:
Date:
Position:
Reason:
Replacement For:
Start Date:
Approval Date:
Appointing Head Hunter Date:
End Date:
Job Type:
Job Industry:
Job Category:
Job Role:
Job Title:
Job Experience:
Job Skills:
Job Description:
Country:
State:
City:
Salary:
Currency:
Mercer Code:
Qualifications:
Specialisation:
Languages:
Certifications:
Number of Reports:
Direct Report:
Dotted Line Report:
Job
×
Job Type:
Job 1
Industry:
Industry 1
Job Category:
Job Category 1
Job Role:
Role 1
Job Title:
Software
Experience:
2 Years
Skills:
option 1 ,option2
Job Details
×
Description:
hiii
Requirement:
hiii
Country:
India
State:
Karnataka
City:
Bangalore
Zip / Post Code:
654330
Salary Upto:
50,000
Currency:
Rupees
Salary Frequency:
Frequency 1
Salary Type:
Salary 1
Mercer Job Code:
0056783
Qualifications
×
Educational Qualification:
Qualification 1
Stream:
Btech
Language:
Language 1,Language 2
Professional Qualification:
Qualification 1
@include('layouts.footer')