@extends('layouts.master', ['title' => 'Recruitment Report']) @section('contents')

Recruitment Report

{{-- Need to remove candidate section --commented by vikas --}} {{-- @if (auth()->user()->hasPermission('addnew-candidate')) @endif --}}
{{-- @if (auth()->user()->hasPermission('addnew-candidate')) @endif --}}
{{-- Show notifications --}} @if (session()->has('success'))
@endif @if (session()->has('error'))
@endif
@if (auth()->user()->hasPermission('show-assign-work-log')) @endif @if (auth()->user()->hasPermission('preview-executive-description')) @endif @if (auth()->user()->hasPermission('update_position_request')) @endif @forelse($positions as $position) @php $color = 'primary'; $status = 'Pending'; if ($position->no_of_completed_requirements >= $position->no_of_requirements) { $color = 'success'; $status = 'Completed'; } @endphp @if (auth()->user()->hasPermission('show-assign-work-log')) @endif @if (auth()->user()->hasPermission('preview-executive-description')) @endif @if (auth()->user()->hasPermission('update_position_request')) @endif @empty @endforelse
S.No. Position Title Client NameTotal Contacted PersonDate of Request Requirement Close Date Location Work Assigned Completed/RequiredActionCurrent StatusEdit Action
{{ $loop->iteration }} {{ $position->position_title }} {{ $position->client_name }} {{ get_position_contacts($position->id) }} Contacts {{ date('jS F, Y', strtotime($position->created_at)) }} {{ $position->date_notified ? date('jS F, Y', strtotime($position->date_notified)) : '' }} {{ $position->getCity && $position->getState ? $position->getCity->city_name . ' - ' . $position->getState->state : '-' }} {{ get_username($position->assigned_executive) }} {{ $position->no_of_completed_requirements . ' / ' . $position->no_of_requirements }} {{ $status }}Edit
No Record Found
{{ $positions->links() }}
@endsection