@foreach($metrics_current as $key => $val) @if(!in_array($key, ['CR_total_correct','CR_total_incorrect','CR_average_time']))
@if($key === 'SIN_VALOR') {{ __('all.SIN_VALOR') }} @else {{ strtoupper($key) }} @endif
@if(isset($metrics_current[$key])) {{ number_format($metrics_current[$key],2) }}% @else N/A @endif
@if(isset($metrics_last[$key])) {{ number_format($metrics_last[$key],2) }}% @else N/A @endif
@if(isset($metrics_global[$key])) {{ number_format($metrics_global[$key],2) }}% @else N/A @endif
@php $perf = $metrics_performance[$key] ?? null; @endphp @if(!is_null($perf))
{{ number_format($perf,2) }}%
@else
N/A
@endif
@endif @endforeach