{{ __('Instances list') }}

{{ __('Total submission history') }}

{{ __('Printed') }}: {{ now()->format('d/m/Y H:i') }} · {{ __('Records') }}: {{ $rows->count() }} @if(request('instance_id')) · {{ __('Instance') }} #{{ request('instance_id') }} @endif

{{ __('Clear') }}
@forelse($rows as $sub) @empty @endforelse
# {{ __('Instance') }} {{ __('Employee') }} {{ __('Cycle') }} {{ __('Stage') }} {{ __('Evaluator') }} {{ __('Submitted by') }} {{ __('Submitted at') }} {{ __('Score') }} {{ __('Status') }}
{{ $sub->id }} #{{ $sub->appraisal_instance_id }} #{{ $sub->appraisal_instance_id }} {{ $sub->instance?->staff?->user?->name ?? '—' }} {{ $sub->instance?->cycle?->name ?? '—' }} {{ \App\Support\PerformanceAppraisal\AppraisalStages::label($sub->stage) }} {{ staff_evaluator_label($sub->evaluator) }} @if($sub->submitted_at) {{ staff_evaluator_label($sub->evaluator) }} @else — @endif {{ $sub->submitted_at?->format('d/m/Y H:i') ?? '—' }} {{ $sub->total_score !== null ? number_format((float) $sub->total_score, 2).'%' : '—' }} {{ $sub->submitted_at ? __('Submitted') : __('Pending') }}
{{ __('No records.') }}