@extends('siswa.layouts.app') @section('title', 'Kerjakan Challenge') @push('styles') @endpush @section('content')
{{-- Header --}}
๐Ÿ† {{ $challenge->judul_challenge }}
๐Ÿ“ {{ $challenge->soal->count() }} Soal โญ {{ $challenge->exp }} EXP โฐ Tenggat: {{ \Carbon\Carbon::parse($challenge->tenggat_waktu)->format('d M Y, H:i') }}
{{-- Dots navigasi soal --}}
@foreach($challenge->soal as $i => $soal)
{{ $i + 1 }}
@endforeach
{{-- Progress --}}
Soal 1 dari {{ $challenge->soal->count() }}
{{-- Form --}}
@csrf {{-- Soal --}} @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 {{-- Warning --}}
โš ๏ธ Masih ada soal yang belum dijawab. Yakin ingin submit?
{{-- Navigasi --}}
@endsection @push('scripts') @endpush