@extends('layouts.recruitment') @section('content') Interview Scorecard {{ ucfirst($interview->type) }} Interview for {{ $interview->application->applicant->full_name }} @if($interview->status === 'Completed') This interview has already been scored. @endif @csrf Scoring Criteria (1-5) @php $criteria = ['Subject Mastery', 'Communication Skills', 'Pedagogical Knowledge', 'Professionalism', 'Classroom Management']; @endphp @foreach($criteria as $index => $item) {{ $item }} @for($i = 1; $i <= 5; $i++) {{ $i }} @endfor @endforeach Overall Comments Recommendation Recommend for Next Stage Keep on Hold Reject Applicant @if($interview->status !== 'Completed') Submit Scorecard @endif @endsection
{{ ucfirst($interview->type) }} Interview for {{ $interview->application->applicant->full_name }}
This interview has already been scored.