@extends('layouts.cbt') @section('page-title', 'Edit Soal') @section('sidebar')@include('components.guru-sidebar')@endsection @section('content') @php $correctIdx = $question->options->values()->search(fn($o) => $o->is_correct); $correctIndices = $question->options->values()->filter(fn($o) => $o->is_correct)->keys()->values()->all(); @endphp
@csrf @method('PUT')
@if($question->type->value === 'pg')
@elseif($question->type->value === 'pg_kompleks')

Centang minimal 2 opsi sebagai jawaban benar.

@elseif($question->type->value === 'true_false')
@foreach($question->options as $i => $opt)
is_correct)>
@endforeach
@endif
@push('scripts') @endpush @endsection