@extends('employee.layouts.app') @section('title', get_setting('site_name').' | '.__('My performance appraisals')) @section('content')
{{ __('View your reviews and complete evaluations assigned to you.') }}
| # | {{ __('Employee') }} | {{ __('Cycle') }} | {{ __('Status') }} | {{ __('Due') }} | {{ __('Action') }} |
|---|---|---|---|---|---|
| #{{ $r->id }} | {{ $r->staff?->user?->name ?? '—' }} @if($r->staff?->warehouse?->name) {{ $r->staff->warehouse->name }} @endif | {{ $r->cycle?->name ?? '—' }} | @include('partials.appraisal_status_badge', [ 'label' => $r->listDisplayStatus($paperWorkflow), 'variant' => $r->listDisplayStatusVariant(), ]) | @if($r->due_at) {{ $r->due_at->format('d/m/Y') }} @else — @endif | {{ __('Evaluate') }} |
| # | {{ __('Cycle') }} | {{ __('Status') }} | {{ __('Due') }} | {{ __('Score') }} | {{ __('Action') }} |
|---|---|---|---|---|---|
| #{{ $r->id }} |
{{ $r->cycle?->name ?? '—' }}
@if($r->evaluationForm?->title)
{{ $r->evaluationForm->title }}
@endif
|
@include('partials.appraisal_status_badge', [ 'label' => $r->listDisplayStatus($paperWorkflow), 'variant' => $r->listDisplayStatusVariant(), ]) | @if($r->due_at) {{ $r->due_at->format('d/m/Y') }} @else — @endif | {{ $r->final_total_score !== null ? number_format((float) $r->final_total_score, 2).'%' : '—' }} | {{ __('Open') }} |
| {{ __('No instances yet.') }} | |||||