@extends('admin.layouts.master') @section('title') Job Details @endsection @section('content')
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}} |
# | 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') @else @endif |
No applications found |
# | 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') @else @endif |
No applications found |