@extends('frontend.pages.learning-player.master') @section('contents')
@if (Session::has('course_slug')) {{ truncate(Session::get('course_title')) }} @endif
{{ $quiz->pass_mark }}/{{ $quiz->total_mark }}

{{ __('Minimum Marks') }}

{{ $attempt }}/{{ $quiz->attempt }}

{{ __('Attempts') }}

{{ $quiz->questions_count }}

{{ __('Questions') }}

{{ __('0') }}{{ __(':') }}{{ __('0') }}{{ __(':') }}{{ __('0') }}

{{ __('Remained time') }}

@csrf
@foreach ($quiz->questions as $question)
{{ $loop->iteration }}. {{ $question->title }}
@foreach ($question->answers as $answer)
@endforeach
@endforeach
@endsection @push('scripts') @endpush