@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
{{-- second Interview Done --}}
@include('dashboard.requests.applicants.applicant-logs', ['applicant' => $applicant, 'field' => 'second_interview_done'])
Yes
No
{{-- 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
{{-- Offline Training --}}
@include('dashboard.requests.applicants.applicant-logs', ['applicant' => $applicant, 'field' => 'offline_training'])
@foreach (['attended' => 'Attended', 'not_attended' => 'Not Attended'] as $value => $label)
{{ $label }}
@endforeach
{{-- Stage Result --}}
@include('dashboard.requests.applicants.applicant-logs', ['applicant' => $applicant, 'field' => 'stage_result'])
@foreach (['passed' => 'Passed', 'failed' => 'Failed'] as $value => $label)
{{ $label }}
@endforeach
{{-- Notes --}} {{--
--}}
@endsection @push('scripts') @endpush