@extends('layouts.app') @section('content')

{{ $exam->title }}

زمان باقی‌مانده:
@csrf
    @foreach($questions as $q) @php($a = $saved->get($q->id)) @php($chosen = (int)($a->answer_json['choice_id'] ?? 0))
  1. {{ $q->body }}
    @foreach($q->choices as $c)
    @endforeach
  2. @endforeach
@push('scripts') @endpush @endsection