@extends('admin.layouts.master') @section('title') Student Quiz Report | @endsection @section('content')
# Id | Quiz | Student name | Total questions | Correct answers | Wrong answers | Total points | Total time spent (seconds) | |
---|---|---|---|---|---|---|---|---|
{{ $quiz->unique_quiz_id }} | {{ $quiz instanceof App\Models\QuizQuestionAnswerManage ? 'Course Quiz' : 'Level Quiz' }} | {{ $quiz->user->name }} | {{ $quiz->total_count }} | {{ $quiz->total_correct_answers }} | {{ $quiz->total_count - $quiz->total_correct_answers }} | {{ $quiz->total_points }} | {{ $quiz->total_time }} | |
No data available |