@extends('layouts.app') @section('title', '考試成績') @section('content')
{{ $exam->title }}
@if($result->score >= 90) 太棒了! @elseif($result->score >= 80) 表現優異! @elseif($result->score >= 60) 及格了! @elseif($result->score >= 40) 再加油! @else 需要多練習! @endif
完成時間:{{ $result->completed_at->format('Y-m-d H:i') }}
{{ $correct }}
答對
{{ $wrong }}
答錯
{{ $total }}
總題數
{{ $h->score }}
{{ $h->completed_at->format('m/d') }}
第 {{ $index + 1 }} 題: {{ $question->question_text }}
@if($question->image_path)您的答案: {{ $answer->student_answer ?? '未作答' }}
@if($question->correct_answer)正確答案: {{ $question->correct_answer }}
@endif