@extends('layouts.app') @section('title', 'Analisis Soal') @section('content')

Analisis Soal

{{ $exam->title }} - {{ $exam->course->name }}

Kembali
@foreach($analysis as $item) @endforeach
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:

@endsection