@extends('siswa.layouts.app') @section('title', 'Kerjakan Challenge') @push('styles') @endpush @section('content')
{{-- KOLOM KIRI --}}
{{ $challenge->judul_challenge }}
{{ $challenge->soal->count() }} Soal Tenggat: {{ \Carbon\Carbon::parse($challenge->tenggat_waktu)->format('d M Y, H:i') }} {{-- Badge durasi --}} @if($challenge->durasi_pengerjaan) ⏱ {{ $challenge->durasi_pengerjaan }} menit pengerjaan @endif
Soal 1 dari {{ $challenge->soal->count() }}
@csrf @foreach($challenge->soal as $i => $soal)
Soal {{ $i + 1 }}

{{ $soal->pertanyaan }}

@foreach(['A','B','C','D'] as $opsi) @php $key = 'opsi_' . strtolower($opsi); @endphp @endforeach
@endforeach
Masih ada soal yang belum dijawab. Yakin ingin submit?
{{-- /quiz-main --}} {{-- KOLOM KANAN --}}
Sisa Waktu
{{-- Info total durasi --}} @if($challenge->durasi_pengerjaan)
dari {{ $challenge->durasi_pengerjaan }} menit
@endif
--:--
{{-- /quiz-sidebar-panel --}}
{{-- /quiz-page --}} @endsection @push('scripts') @endpush