@extends('dashboard.layouts.app') @section('content')
Staff Basic Information
Full Name
{{ $applicant->full_name }}
Email
{{ $applicant->email }}
Contact Number
{{ $applicant->contact_number }}
Source
{{ $applicant->source ?? '-' }}
Resume
@if($applicant->resume) View Resume @else No Resume Uploaded @endif
Created At
{{ $applicant->created_at ?? '-' }}
Edit Applicant: {{ $applicant->full_name }}
{{--
@csrf @method('PUT') --}}
{{-- Current Status --}}
@include('dashboard.requests.applicants.applicant-logs', ['applicant' => $applicant, 'field' => 'current_status'])
@foreach (['new' => 'New', 'rejected' => 'Rejected', 'hired' => 'Hired', 'offer_rejected' => 'Offer Rejected'] as $value => $label)
{{ $label }}
@endforeach
{{-- Screening Status --}}
@include('dashboard.requests.applicants.applicant-logs', ['applicant' => $applicant, 'field' => 'screening_status'])
@foreach (['pending' => 'Pending', 'done' => 'Done', 'rejected' => 'Rejected'] as $value => $label)
{{ $label }}
@endforeach
{{-- Phone Call Screening --}}
@include('dashboard.requests.applicants.applicant-logs', ['applicant' => $applicant, 'field' => 'phone_call_status'])
@foreach (['pending' => 'Pending', 'done' => 'Done', 'rejected' => 'Rejected'] as $value => $label)
{{ $label }}
@endforeach
{{-- Shortlist Status --}}
@include('dashboard.requests.applicants.applicant-logs', ['applicant' => $applicant, 'field' => 'shortlist_status'])
@foreach (['pending' => 'Pending', 'done' => 'Done', 'rejected' => 'Rejected'] as $value => $label)
{{ $label }}
@endforeach
{{-- Demo Scheduling Status --}}
@include('dashboard.requests.applicants.applicant-logs', ['applicant' => $applicant, 'field' => 'demo_scheduling_status'])
{{ $applicant->demo_scheduling_status }}
{{-- Stage Status --}}
@include('dashboard.requests.applicants.applicant-logs', ['applicant' => $applicant, 'field' => 'stage_status'])
{{ $applicant->stage_status}}
@if ($applicant->stage_status != 'pending') Notes: {{ $applicant->stage_note}} @endif
{{-- Is Rescheduled --}}
@include('dashboard.requests.applicants.applicant-logs', ['applicant' => $applicant, 'field' => 'is_resheduled'])
{{ $applicant->is_resheduled ? 'Yes' : 'No' }}
{{-- Stage Result --}}
@include('dashboard.requests.applicants.applicant-logs', ['applicant' => $applicant, 'field' => 'stage_result'])
{{ $applicant->stage_result ?? '' }}
@if ($applicant->stage_result != null) Notes: {{ $applicant->stage_note}} @endif
{{-- Final Interview Done --}}
@include('dashboard.requests.applicants.applicant-logs', ['applicant' => $applicant, 'field' => 'final_interview_done'])
Yes
No
{{-- Offer Status --}}
@include('dashboard.requests.applicants.applicant-logs', ['applicant' => $applicant, 'field' => 'offer_status'])
@foreach (['pending' => 'Pending', 'accepted' => 'Accepted', 'rejected' => 'Rejected'] as $value => $label)
{{ $label }}
@endforeach
{{-- Notes --}} {{--
Cancel
--}}
@endsection @push('scripts') @endpush