{{-- Layout --}} @extends('admin.layout.layout') @section('title','GAS LMS | Quiz Participants') {{-- Breadcrumb section --}} @section('breadcrumb')
@endsection {{-- Content --}} @section('content')
| name | grade | ratio | status | attempts | download answer | @if (request()->quiz == null || request()->quiz == 'graded')feedback | @endif|
|---|---|---|---|---|---|---|---|
| {{$student->first_name.' '.$student->middle_name.' '.$student->last_name}} | @if (strVal($student->grade) >= 0) {{$student->grade}} @else @endif | @if (strVal($student->ratio) >= 0) {{$student->ratio}}% @else @endif | @if ($student->is_posted) posted @else un posted @endif | {{$student->attempts_remainder}} | @if ($student->file_url) Download @else @endif | @if (request()->quiz == null || request()->quiz == 'graded') @if ($student->feedback)@else | @endif @endif |