@extends('layouts.organization') @section('breadcrumb')

{{ __('Quiz') }}

@endsection @section('content')
{{ __('Course Name') }}: {{ $course->title }}

{{ __('Quiz List') }}

{{__('Create New Quiz')}}
img
@if($exams->count() > 0)
@foreach($exams as $exam) @endforeach
{{ __('Quiz Name') }} {{ __('Quiz Types') }} {{ __('Total Question') }} {{ __('Status') }} {{ __('Add Question') }} {{ __('Action') }}
{{$exam->name}} {{ucfirst(str_replace("_", " ", $exam->type))}} {{$exam->questions->count()}} @if($exam->status == 1)
{{ __('Publish') }}
@else
{{ __('Unpublish') }}
@endif
{{ __('Add Question') }}
@else
img
{{ __('Empty Quiz') }}
@endif
@endsection