@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') }} {{ __('Option 01') }} {{ __('Option 02') }} {{ __('Option 03') }} {{ __('Option 04') }} {{ __('Action') }}
{{\Illuminate\Support\Str::words($question->name, 1)}} @if($option->is_correct_answer == 'yes') @endif {{\Illuminate\Support\Str::words($option->name, 2)}}
{{ __('Back to Quiz') }}
@endsection @push('script') @endpush