@extends('layouts.app') @section('title', 'Analisis Soal') @section('content')
{{ $exam->title }} - {{ $exam->course->name }}
| No | Soal | Tipe | Dijawab | Benar | Salah | % Benar | Kesulitan | Kategori |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ Str::limit($item['question']->question, 80) }} | {{ str_replace('_', ' ', $item['question']->type) }} | {{ $item['answered'] }} / {{ $item['total_participants'] }} | {{ $item['correct'] }} | {{ $item['wrong'] }} | {{ $item['correct_percentage'] }}% | {{ $item['difficulty_index'] }}% | {{ $item['status'] }} |
Keterangan Analisis: