@extends('layouts.app') @section('title', 'Appraisal — '.$appraisal->communicator->name) @section('page-title', 'Appraisal: '.$appraisal->quarter_label) @section('content')
{{-- Summary card --}}

{{ $appraisal->communicator->name }}

{{ $appraisal->communicator->region?->name }} · {{ $appraisal->quarter_label }}
{{ ucfirst($appraisal->status) }}
@if($appraisal->total_score !== null)
{{ $appraisal->total_score }}/50
Total Score
{{ $appraisal->score_percentage }}%
Percentage
@if($appraisal->tierBefore && $appraisal->tierAfter) @if($appraisal->tierAfter->level > $appraisal->tierBefore->level) ↑ Promoted @elseif($appraisal->tierAfter->level < $appraisal->tierBefore->level) ↓ Demoted @else No Change @endif @else Pending @endif
Tier Outcome
@if($appraisal->tierBefore || $appraisal->tierAfter)
{{ $appraisal->tierBefore?->name ?? '?' }} {{ $appraisal->tierAfter?->name ?? 'TBD' }}
@endif @endif @if($appraisal->notes)
Notes: {{ $appraisal->notes }}
@endif
{{-- Score form (only if not completed) --}} @if($appraisal->status !== 'completed')

Enter Scores (max 10 per criterion · 50 total)

@csrf
Total Score
{{-- Complete appraisal --}} @if($appraisal->total_score !== null)

Complete Appraisal & Update Tier

Select the new tier for this communicator based on their score, then complete the appraisal. The communicator will be notified.

@csrf
@endif @endif {{-- Score breakdown (read-only when completed) --}} @if($appraisal->scores->isNotEmpty() && $appraisal->status === 'completed')

Score Breakdown

@foreach($appraisal->scores as $score)
{{ $score->criteria }}
{{ $score->score }}/{{ $score->max_score }}
@endforeach
@endif ← Back to Appraisals
@endsection