{{-- analysis/quanti.blade.php --}} {{-- Quantitative criteria analysis per product --}} {{-- Legacy: show_table_StudyQuery_quanti() --}} @extends('layouts.app') @section('content') @include('components.analysis-nav', ['activeTab' => 'quanti']) @include('components.analysis-filter', ['formAction' => route('kms.study.quanti', $study->Id)]) @foreach($quantiData['products'] as $prodId => $prodRow)

{{ $prodRow['product']['Name'] ?? "Produit {$prodId}" }}

@if($normeId) @endif @foreach($prodRow['criteria'] as $noteName => $crit) @include('components.row', ['index' => $loop->index]) @if($normeId) @endif @endforeach
Critère N Moyenne Ecart-type Min Max Top %Signif.
{{ $crit['label'] }} {{ $crit['n'] }} @include('components.cell', ['type' => 'TWO_DECI', 'value' => $crit['avg']]) @include('components.cell', ['type' => 'TWO_DECI', 'value' => $crit['std']]) {{ $crit['min'] }} {{ $crit['max'] }} {{ $crit['top_pct'] }}%{{ $crit['significance']?->value ?? '' }}

@endforeach @endsection