@include('livewire.components.export-column-modal', [ 'modalId' => 'exportColumnModal', 'exportHandler' => \App\Exports\Handlers\JobApplicationExportHandler::class, ] )
@if (session()->has('error'))
{!! session('error') !!}
@endif

Job Detail

{{ $postRec?->companyRec->name }}

Job Post:
{{ $postRec?->reqid }}
Posted at: {{ $postRec?->postedAgo }} Applicants: {{ $postRec?->applications_count }}
Profile/Location:
@if($postRec)
@foreach($postRec?->profiles as $profileRec) {{ $profileRec->profile }}: {{ $profileRec->location }} @endforeach
Can a student apply for more than one profile: {{ $postRec->profile_multiple }} @endif
 
No. of Positions:
{{ $postRec?->position }}
Opportunity Type:
{{ $postRec?->opportunity }}
 
Experience:
@if($postRec) @foreach ($postRec?->experienceSlabs as $expRec) {{ $expRec->experienceYears }} @endforeach @endif
Eligible Batches:
@if($postRec) @foreach ($postRec?->batches as $batch) {{ $batch->programBatch }} @endforeach @endif
Minimum Marks:
@if($postRec) 10th : {{$postRec?->ssc_formated }} 12th / Diploma : {{$postRec?->hsc_formated }} Graduation : {{$postRec?->graduation_formated }} @endif
Minimum CGPA:
@if($postRec) {{$postRec?->cgpa }} @endif
@if (!empty($postRec?->specialization) && $postRec->specialization->count())
Specializations:
@foreach ($postRec?->specialization as $specRec) {{ $specRec->name }} @endforeach
@endif
Document(if any):
@if($postRec && $postRec->documents->count() > 0) @foreach ($postRec->documents as $docfile) @endforeach @else NA @endif

ELIGIBLE STUDENTS
{{ $stageCounts['total'] }} | {{ $stageCounts['eligible'] }}
{{ $stagePercentages['eligible'] ?? 0 }}%

APPLICANTS
{{ $stageCounts['applicant'] ?? 0 }}
{{ $stagePercentages['applicant'] ?? 0 }}%

1st SHORTLIST
{{ $stageCounts['first'] ?? 0 }}
{{ $stagePercentages['first'] ?? 0 }}%

2nd SHORTLIST
{{ $stageCounts['second'] ?? 0 }}
{{ $stagePercentages['second'] ?? 0 }}%

INTERVIEW
{{ $stageCounts['interview'] ?? 0 }}
{{ $stagePercentages['interview'] ?? 0 }}%

OFFERED
{{ $stageCounts['offer'] ?? 0 }}
{{ $stagePercentages['offer'] ?? 0 }}%