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

{{ __('app.student.exams.submitted.title') }}

{{ __('app.student.exams.submitted.body') }}

{{-- Optional receipt-style summary (no scores) --}}
{{ __('app.student.exams.submitted.summary') }}
{{ __('app.student.exams.submitted.fields.exam') }}: {{ $attempt->exam?->title ?? '—' }}
{{ __('app.student.exams.submitted.fields.subject') }}: {{ $attempt->exam?->subject?->name ?? '—' }}
{{ __('app.student.exams.submitted.fields.date') }}: {{ $attempt->exam?->exam_date?->format('Y-m-d') ?? '—' }}
{{ __('app.student.exams.submitted.fields.questions') }}: {{ (int)$attempt->max_items }}
{{ __('app.student.exams.submitted.fields.attempt_id') }}: #{{ $attempt->id }}
{{ __('app.student.exams.submitted.fields.time') }}: {{ $attempt->started_at?->format('Y-m-d H:i') ?? $attempt->created_at->format('Y-m-d H:i') }} → {{ $attempt->finished_at?->format('Y-m-d H:i') ?? '—' }}
@endsection