@include('layouts.talentHeader')
Job Approval List
Job Listing
@if(count($currentUserJobs)) @foreach($currentUserJobs as $job) @if($job->job_close == 1) @else @endif @if($job->posting_type == 1) @php($post = 'Confidential') @elseif($job->posting_type == 2) @php($post = 'Open') @elseif($job->posting_type == 3) @php($post = 'Others') @else @php($post = '') @endif @if($job->is_approved == 0) @elseif($job->is_approved == 1) @endif @endforeach @endif
Posted On Title Job Code Posted By Posting Type Approval Applicants Action
{{date('d-m-Y', strtotime($job->job_requisition_date))}} {{$job->job_title}} {{$job->job_code}} {{$job->user->name}}{{$post}} @if($job->posting_type == 2 || $job->posting_type == 3) Approve @else Approve @endif Approved @if(count($job['job_application']) > 0 || count($job['hhsharedcandidates']) > 0 || count($job['clientCandidate']) > 0 || count($job['potentialcandidate']) > 0) Applicants({{count($job['job_application']) + count($job['hhsharedcandidates']) + count($job['clientCandidate']) + count($job['potentialcandidate'])}}) @else Applicants(0) @endif
@csrf
@include('layouts.footer')