@extends('layouts.v_template') @section('script') @endsection @section('content')
Sistem membandingkan jawaban Anda dengan diagnosis yang paling sesuai berdasarkan data kasus.
@foreach($options as $key => $text) @php $class = ''; /* |-------------------------------------------------------------------------- | JAWABAN BENAR |-------------------------------------------------------------------------- */ if ($key == $correctAnswer) { $class = 'option-correct'; } /* |-------------------------------------------------------------------------- | PILIHAN USER SALAH |-------------------------------------------------------------------------- */ if ( $key == $userAnswer && $userAnswer != $correctAnswer ) { $class = 'option-user'; } @endphp