@extends('employee.layouts.app') @section('title', get_setting('site_name').' | '.__('My performance appraisals')) @section('content')
@if($pendingEvaluations->total() > 0)
{{ __('Awaiting your evaluation') }}
{{ $pendingEvaluations->total() }}
@foreach($pendingEvaluations as $r) @endforeach
ID {{ __('Employee') }} {{ __('Cycle') }} {{ __('Stage') }} {{ __('Due') }}
{{ $r->id }} {{ $r->staff?->user?->name ?? '—' }} {{ $r->cycle?->name }} {{ str_replace('_', ' ', $r->current_stage) }} {{ $r->due_at?->format('Y-m-d') ?? '—' }} {{ __('Evaluate') }}
@endif
{{ __('My appraisals (as employee)') }}
@if(\App\Models\PerformanceAppraisalSetting::query()->value('feature_360_enabled')) {{ __('360° feedback') }} @endif
@forelse($myAppraisals as $r) @empty @endforelse
ID{{ __('Cycle') }}{{ __('Status') }}{{ __('Stage') }}{{ __('Due') }}
{{ $r->id }} {{ $r->cycle?->name }} {{ $r->status }} {{ str_replace('_', ' ', $r->current_stage) }} {{ $r->due_at?->format('Y-m-d') ?? '—' }} {{ __('Open') }}
{{ __('No instances yet.') }}
@endsection