@extends('adminlte::page') @section('title', $quizSurvey->name . ' - 回答詳細') @section('content_header')
@stop @section('content')

設問情報

設問内容:

{{ $quizQuestion->question }}

@if($quizQuestion->detail)
詳細説明:

{{ $quizQuestion->detail }}

@endif
正解:

{{ $quizQuestion->answer }}

配点:

{{ $quizQuestion->point }}点

解説

@if($quizQuestion->correct_explanation)
正解時の解説

{{ $quizQuestion->correct_explanation }}

@if($quizQuestion->answerImage)
正解時解説画像
@endif
@endif @if($quizQuestion->incorrect_explanation)
不正解時の解説

{{ $quizQuestion->incorrect_explanation }}

@if($quizQuestion->incorrectExplanationImage)
不正解時解説画像
@endif
@endif @if(!$quizQuestion->correct_explanation && !$quizQuestion->incorrect_explanation)

解説が設定されていません。

@endif

回答詳細

回答内容: {{ $answer }}
{{ $isCorrect ? '正解' : '不正解' }}

回答者一覧 ({{ count($respondents) }}名)

@if (count($respondents) > 0) @foreach($respondents as $index => $respondent) @endforeach @else @endif
# 名前 タイプ
{{ $index + 1 }} {{ $respondent['name'] }} {{ $respondent['type'] }}
回答者がいません。
@stop @section('css') @include('components.custom-css') @stop