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

{{__('My Courses')}}

@endsection @section('content')
{{$exam->name}}

{{ @$exam->course->title }}

@if($exam->questions->count() > 0) @foreach($exam->questions as $key => $question) @foreach($question->options as $key_option => $option) @endforeach @endforeach @endif
{{ __('Question') }} {{ __('True') }} {{ __('False') }} {{ __('Action') }}
{{\Illuminate\Support\Str::words($question->name, 1)}} @if($option->is_correct_answer == 'yes') @endif {{$option->name}}
{{ __('Back to Quiz') }}
@endsection @push('style') @endpush @push('script') @endpush