@extends('admin.layout.app') @section('body')
| {{ __('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) }}% |