@extends('layouts.dashboard') @section('content')
entries

Candidate Management

@if ($candidates->count() > 0) @foreach ($candidates as $candidate) @endforeach @else @endif
S/No Basic Info Experience Current Salary Expected Salary Comments Status Offered Salary Department Added By Date of Joining Resume Action
{{ $candidates->firstItem() + $loop->index }}
Name: {{ $candidate->name }}
Email: {{ $candidate->email }}
Phone: {{ $candidate->phone_number }}
{{ $candidate->experience ?? '-' }} {{ $candidate->current_salary ?? '-' }} {{ $candidate->expected_salary ?? '-' }} {{ $candidate->comments ?? '-' }} {{ $candidate->status }} {{ $candidate->offered_salary ?? '-' }} {{ $candidate->department->name ?? '-' }} {{ $candidate->addedBy->name ?? 'N/A' }} {{ $candidate->date_of_joining ? \Carbon\Carbon::parse($candidate->date_of_joining)->format('d M, Y') : 'N/A' }}
@if ($candidate->resume) @else - @endif
No records found.
@endsection @section('scripts') @endsection