@extends('admin.layouts.master') @section('title') Job Details @endsection @section('content')

Job Details

Back to Job List
@if($job->status!='open') @endif @if($job->image) @endif
Company Name {{ $job->employer->company_name ?? '' }}
Designation {{ $job->designation }}
Job Location {{ $job->job_location }}
Job Type {{ $job->jobType ? $job->jobType->name : '' }}
Qualification {{ $job->required_qualification }}
Experience {{ $job->required_experience }} Years
Benefits {{ $job->benefits }}
Full Job Description {{ $job->overview }}
Roles & Responsibilities {{ $job->roles_n_responsibilities }}
Job On-Hold/Closed Reason {{$job->reason}}

Applied Candidates

@forelse($job->applications as $key => $application) @empty @endforelse
# Candidate Name Experience CTC Expected CTC Key Skills Skills Match Resume Action
{{ $key + 1 }} {{ $application->user->first_name }} {{ $application->user->last_name }} {{ $application->user->employee->experience }} Years ${{ number_format($application->user->employee->ctc, 2) }} ${{ number_format($application->user->employee->ectc, 2) }} {{ $application->user->employee->skills }} {{ $application->skill_match_percentage }}% @php $resume = $application->user->employee->cv; @endphp @if ($resume) Download Resume @else N/A @endif @if ($application->approval_status === 'Approved')
@csrf @method('PUT')
@else
@csrf @method('PUT')
@endif
No applications found

Matched Candidates

@forelse($matchedEmployees as $key => $application) @empty @endforelse
# Candidate Name Experience CTC Expected CTC Key Skills Skills Matched Resume Action
{{ $key + 1 }} {{ $application->user->first_name }} {{ $application->user->last_name }} {{ $application->total_experience }} Years ${{ number_format($application->ctc, 2) }} ${{ number_format($application->ectc, 2) }} {{ $application->skills }} {{ $application->skill_match_percentage }}% @php $resume = $application->cv; @endphp @if ($resume) Download Resume @else N/A @endif @if ($application->approval_status === 'Approved')
@csrf @method('PUT')
@else
@csrf @method('PUT')
@endif
No applications found
@endsection