{{-- Layout --}} @extends('teacher.layout.layout') {{-- Page Title --}} @section('title','GAS LMS | Quizzes') {{-- Breadcrumb section --}} @section('breadcrumb') @include('components._breadcrumb', ['items' => ['Quizzes' => route('teacher.course.quiz.index',$coffid)]]) @endsection {{-- Content --}} @section('content')
All Quizzes There are {{count($quizzes)}} Quizzes
@if($quizzes->count() > 0)
@php $count=0; @endphp @foreach ($quizzes as $quiz) @endforeach
id status course topic title start date end date actions
{{++$count}} @if ($quiz->is_active) Live @else Draft @endif {{$course_offering->acyname}}_{{$course_offering->cname.' ('.$course_offering->lshort_name.')'}} {{$quiz->name}} {{$quiz->title}} {{$quiz->start_date}} {{$quiz->end_date}}
{{ $quizzes->appends(Request::except('page'))->render('components._pagination') }}

Displaying {{$quizzes->count()}} of {{ $quizzes->total() }}.

@else

This where you find all your assignments, quizzes, and materials

@endif
@endsection