Assessment history โ {{ $procedure->name }}
@foreach($assessments as $a)
@if($a->is_na)
NA
@else
{{ $a->score }}
@endif
{{ $a->assessment_date->format('d M Y') }}
@if($a->assessedBy)
@php $ciProfile = $a->assessedBy->ciProfile; @endphp
@if($ciProfile?->photo_path)
 }})
@else
@endif
{{ $a->assessedBy->name }}
@if($ciProfile?->position || $ciProfile?->department)
{{ implode(' ยท ', array_filter([$ciProfile?->position, $ciProfile?->department])) }}
@endif
@else
Assessor unknown
@endif
@endforeach