@extends('admin.layout.app') @section('body')

{{ __('admin.quiz_attempts') }}

{{ __('admin.admin_view_review_regrade') }}
@if(session('msg'))
{{ session('msg') }}
@endif
{{ __('admin.reset') }}
@forelse($attempts as $a) @empty @endforelse
# {{ __('admin.student_2') }} {{ __('admin.quiz') }} {{ __('admin.score') }} {{ __('admin.status') }} {{ __('admin.action') }}
{{ $a->id }}
{{ $a->student?->name ?? '—' }}
{{ $a->student?->email ?? '' }}
{{ $a->quiz?->title ?? '—' }}
{{ $a->quiz?->course?->title ?? '' }}
{{ $a->score ?? 0 }} / {{ $a->max_score ?? 0 }} {{ $a->status }} {{ __('admin.view') }}
{{ __('admin.no_attempts_found') }}
{{ $attempts->withQueryString()->links('pagination::bootstrap-4') }}
@endsection