@php $responses = is_array($responses ?? null) ? $responses : []; $formKpis = $form?->formKpis ?? collect(); $compact = $compact ?? false; @endphp @if($formKpis->isNotEmpty() && $responses !== [])
| {{ __('KPI') }} | {{ __('Description') }} | {{ __('Score') }} |
|---|---|---|
| @if($k->title_bn){{ $k->title_bn }}@endif {{ $k->title }} @if(! $compact) ({{ $fk->weightage }}%) @endif | @include('partials.kpi_description_hint', ['indicator' => $k]) | {{ $responses[$k->id] ?? '—' }} |
{{ $emptyMessage }}
@endif