@extends('employee.layouts.app') @section('title', get_setting('site_name').' | '.__('360 feedback')) @section('content') @php $maxR = (int) (\App\Models\PerformanceAppraisalSetting::query()->value('rating_scale_max') ?? 5); $inst = $peer->instance; $form = $inst?->evaluationForm; @endphp
{{ __('360° feedback') }}
@if(! $form)
{{ __('Form missing.') }}
@else

{{ __('Appraisee') }}: {{ $inst->staff?->user?->name }} — {{ __('Relationship') }}: {{ $peer->relationship }}

@csrf @foreach($form->formKpis as $fk) @php $k = $fk->kpiIndicator; @endphp @if($k)
@endif @endforeach {{ __('Back') }}
@endif
@endsection