@include('components.report-header', ['title' => __('admin.quiz_report')])

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

@foreach($quizzes as $q) @endforeach
{{ __('admin.title') }}{{ __('admin.course') }}{{ __('admin.type_2') }}{{ __('admin.questions') }}{{ __('admin.attempts') }}{{ __('admin.avg_score') }}
{{ $q->title }} {{ $q->course->title ?? '' }} {{ ucfirst($q->type) }} {{ $q->questions->count() }} {{ $q->attempts->count() }} {{ round($q->attempts->avg('score'),2) }}%