@foreach($submissions as $sub)
@if($sub->stage === $activeSubmission->stage)
@continue
@endif
{{ \App\Support\PerformanceAppraisal\AppraisalStages::label($sub->stage, $paperWorkflow) }}
@if($sub->submitted_at)
{{ $sub->submitted_at->format('d/m/Y H:i') }}
@else
{{ __('Not submitted') }}
@endif
{{ __('Evaluator') }}: {{ staff_evaluator_label($sub->evaluator) }}
@if($sub->total_score !== null)
{{ __('Score') }}: {{ number_format((float) $sub->total_score, 2) }}%
@endif
@if($sub->comments)
{{ __('Comments') }}: {{ $sub->comments }}
@endif
@endforeach
@if($instance->strength_1 || $instance->weakness_1)
{{ __('Qualitative feedback on record') }}
{{ __('Strengths') }}
- {{ $instance->strength_1 ?: '—' }}
- {{ $instance->strength_2 ?: '—' }}
- {{ $instance->strength_3 ?: '—' }}
{{ __('Weaknesses') }}
- {{ $instance->weakness_1 ?: '—' }}
- {{ $instance->weakness_2 ?: '—' }}
- {{ $instance->weakness_3 ?: '—' }}
@endif