@extends('admin.layouts.master') @section('title','All Quiz') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ __('All Quiz') }}
@if($topic->type == NULL) {{ __('Import Quiz') }} {{ __('Add Question') }} @endif @if($topic->type == '1') {{ __('Add Question') }} @endif {{ __('Back') }}
@if($topic->type == NULL) @endif @foreach($quizes as $quiz) @if($topic->type == NULL) @if($quiz->data_type =='Objective') @else @endif @endif @endforeach
# {{ __('Course') }} {{ __('Topic') }} {{ __('Question') }}{{ __('A') }} {{ __('B') }} {{ __('C') }} {{ __('D') }} {{ __('Answer') }}{{ __('Action') }}
1 {{$quiz->courses->title}} {{$quiz->topic->title}} {{$quiz->question}}{{$quiz->a}} {{$quiz->b}} {{$quiz->c}} {{$quiz->d}} {{$quiz->answer}}{{$quiz->first_option_ans}} {{$quiz->second_option_ans}} {{$quiz->answer}}
@endsection @section('script') @endsection