@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 }}点
{{ $quizQuestion->correct_explanation }}
@if($quizQuestion->answerImage){{ $quizQuestion->incorrect_explanation }}
@if($quizQuestion->incorrectExplanationImage)解説が設定されていません。
| 回答 | 回答者数 | 割合 | 正誤 | 回答者一覧 |
|---|---|---|---|---|
| {{ $answer }} | {{ $data['count'] }}名 |
{{ $totalAnswers > 0 ? round(($data['count'] / $totalAnswers) * 100, 1) : 0 }}%
|
@if($data['is_correct']) 正解 @else 不正解 @endif | @if(count($data['respondents']) > 0) 回答者一覧 ({{ count($data['respondents']) }}名) @else 回答者なし @endif |
| 回答がありません。 | ||||