{{-- analysis/products.blade.php --}} {{-- Product comparison: notes + preference --}} {{-- Legacy: show_table_StudyQuery_produits() --}} @extends('layouts.app') @section('content') @include('components.analysis-nav', ['activeTab' => 'products']) @include('components.analysis-filter', ['formAction' => route('kms.study.products', $study->Id)]) {{-- Header --}} @if($normeId) @endif @foreach($productData['products'] as $prodId => $row) @include('components.row', ['index' => $loop->index]) @if($normeId) @endif @endforeach
Produit N Moy. Note Ecart-type Top % Pref N Pref %Sig. Note Sig. Pref
{{ $row['product']['Name'] ?? "Produit {$prodId}" }} {{ $row['n'] }} @include('components.cell', ['type' => 'TWO_DECI', 'value' => $row['avg_note']]) @include('components.cell', ['type' => 'TWO_DECI', 'value' => $row['std_note']]) {{ $row['top_pct'] }}% {{ $row['pref_count'] }} {{ $row['pref_pct'] }}% {{ $row['note_sig']?->value ?? '' }} {{ $row['pref_sig']?->value ?? '' }}

Total interviews : {{ $productData['total_interviews'] }}

@endsection