@extends('layouts.app') @section('title', 'Appraisals') @section('page-title', 'Quarterly Appraisals') @section('content')
| Communicator | Quarter | Score | Tier Change | Status | |
|---|---|---|---|---|---|
|
{{ $a->communicator->name }}
{{ $a->communicator->region?->name }}
|
{{ $a->quarter_label }} |
@if($a->total_score !== null)
{{ $a->total_score }}/50
{{ $a->score_percentage }}%
@else
—
@endif
|
@if($a->tierBefore && $a->tierAfter) @if($a->tierBefore->id === $a->tierAfter->id) No change @elseif($a->tierAfter->level > $a->tierBefore->level) ↑ {{ $a->tierBefore->name }} → {{ $a->tierAfter->name }} @else ↓ {{ $a->tierBefore->name }} → {{ $a->tierAfter->name }} @endif @else — @endif | {{ ucfirst($a->status) }} | {{ $a->status !== 'completed' ? 'Score' : 'View' }} |
| No appraisals found | |||||