@extends('layouts.app') @section('namePage', 'Kuis Attempt: ' . $session->title) @section('content')

{{ $session->title }}

Sisa waktu:
@csrf @foreach ($questions as $index => $question)
{!! $question->question !!}
@foreach (['A', 'B', 'C', 'D'] as $opt) @php $opt_text = $question->{'option_' . strtolower($opt)}; @endphp @if ($opt_text) @endif @endforeach
@endforeach
@endsection @section('scripts') @endsection