{{ translate('Quiz Manage') }} @if (!empty($quizzes))
@foreach ($quizzes as $quiz) @endforeach
{{ translate('Title/Course') }} {{ translate('Attempts') }} {{ translate('Pass Mark') }} {{ translate('Total Mark') }} {{ translate('Status') }} {{ translate('Action') }}
{{ $quiz?->topicable?->title ?? '' }}

{{ substr($quiz?->course?->title, 0, 40) . '...' ?? '' }}

{{ $quiz?->topicable?->total_retake ?? '' }} {{ $quiz?->topicable?->pass_mark ?? '' }} {{ $quiz?->topicable?->total_mark ?? '' }} @if (dateCompare($quiz?->topicable?->expire_date)) {{ translate('Active') }} @else {{ translate('Closed') }} @endif
@else @endif