@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++) @endfor
@endforeach
@if($interview->status !== 'Completed')
@endif
@endsection