Tracking Result

Passport tracking for your recruitment processing.

New Search
Candidate
{{ $candidate->full_name }}
Father: {{ $candidate->father_name ?? '-' }} Passport: {{ $candidate->passport_no }}
@if($candidate->photo_path)
{{ $candidate->full_name }}
@endif
@php $stepName = $case->currentStep?->name; @endphp {{ $stepName ?? 'Step not set' }}

Step History

Latest at top
@forelse($history as $h) @php $isDone = strtolower($h->status) === 'done'; $isPending = strtolower($h->status) === 'pending'; $badge = $isDone ? 'badge-success' : ($isPending ? 'badge-warn' : 'badge-neutral'); @endphp
@if($isDone)
@elseif($isPending)
@else
@endif
{{ $h->step->name }}
{{ strtoupper($h->status) }} @if($h->done_at) {{ $h->done_at->format('d M Y, h:i A') }} @endif
@if($h->note)
{{ $h->note }}
@endif
@empty
No steps added yet.
@endforelse