@extends('layouts.app') @section('title', __('Review Detail')) @section('content')
| {{ __('Component / KPI') }} | {{ __('Appraisee') }} | {{ __('Appraisor') }} | {{ __('Final') }} |
|---|---|---|---|
| {{ $component->title }} ({{ __('weight :w', ['w' => $component->weight]) }}) | |||
| {{ $kpi->title }} ({{ __('weight :w', ['w' => $kpi->weight]) }}) | @foreach(['appraisee', 'appraisor', 'final'] as $stage)
@php $score = $stages[$stage]->get($kpi->id); @endphp
@if($score)
{{ number_format($score->score, 1) }}/5
@if($score->justification)
@endif
@if($score->attachments->isNotEmpty())
@foreach($score->attachments as $attachment)
{{ $attachment->original_name }}
@endif
@if($score->justification)
@endforeach
{!! $score->justification !!}
@endif
@else
—
@endif
|
@endforeach
||
{{ __('Available once the final review is complete. Appraisee and appraisor each confirm they agree with the final verdict, then the admin/manager signs as final authority.') }}