@extends('dashboard.layouts.default') @section('content') @push('page-css') @endpush
@php $url = 'teacher-exam-questions/worksheet-generator/Quizstart'; @endphp
{{date('d/m/Y')}}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ csrf_field() }}
@if(count($questions)<=0)

No questions found

@else {{ csrf_field() }} @php $i = 1; $enable = 0; $qno = 1; @endphp @foreach($questions as $key=>$quest) @php $curAnswerArray =$answers[$key]; $answer = mb_convert_encoding($curAnswerArray , 'UTF-8', 'UTF-8'); $curQuestionIdArray =$question_ids[$key]; $qId = mb_convert_encoding($curQuestionIdArray , 'UTF-8', 'UTF-8'); @endphp
{!! $answer !!}
@php $i++; $qno++; @endphp @endforeach @endif
@php $i = 1; $enable = 0; @endphp
@endsection @section('scripts') @endsection