@extends('layouts.admin') @section('pageTitle',__('site.test-results').': '.$test->name) @section('innerTitle',$userTest->user->name) @section('breadcrumb') @include('partials.breadcrumb',['crumbs'=>[ [ 'link'=> route('admin.tests.index'), 'page'=>__('site.tests') ], [ 'link'=>route('admin.tests.attempts',['test'=>$test->id]), 'page'=>__('site.test-attempts') ], [ 'link'=>'#', 'page'=>__('site.test-results') ], ]]) @endsection @section('content')


    @foreach($userTest->userTestOptions as $option)
  • @lang('site.question')

    {!! clean( $option->testOption->testQuestion->question ) !!}
  • @lang('site.answer'): {{ $option->testOption->option }}
  • @endforeach
@endsection