{{-- Layout --}} @extends('teacher.layout.layout') {{-- Page Title --}} @section('title','GAS LMS | Quiz Participants') {{-- Breadcrumb section --}} @section('breadcrumb') @include('components._breadcrumb', ['items' => ['Quiz File' => route('teacher.course.quiz.index',$coffid)]]) @endsection {{-- Content --}} @section('content') @include('components._error')
image
{{$quiz_data->start_date }} / {{\Carbon\Carbon::createFromFormat('H:i:s',$quiz_data->start_time)->format('h:i A')}}
Start Time
Points
{{$quiz_data->points}}
{{$assigned_students_count}}
Assigned Students
{{$quiz_data->attempts}}
Quiz Attempts

Students List

@if (request()->quiz == null || request()->quiz == 'graded') @endif
{{-- begin:export --}} @if ($quiz_students->count() > 0)
@endif {{-- end:export --}}
@method('PUT') @csrf @if (request()->quiz == null || request()->quiz == 'graded') @endif @php $count=0; @endphp @foreach ($quiz_students as $student) @if (request()->quiz == null || request()->quiz == 'graded') @endif @endforeach
name grade ratio status attempts Submit answer
@if ($student->is_posted == 0)
@else @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}} user_id}}> {{-- --}}

Submit Manually

{{-- Manual Submit modal --}} @endsection @section('js') {{-- confirm alert --}} @endsection