@extends('layouts-v2.app') @section('head') @endsection @section('title', 'Chi tiết bài thi') @section('content')
Trang chủ Danh sách bài thi Chi tiết bài thi

Chi tiết bài thi

Chi tiết bài thi

Kết quả làm bài: {{ $studentInfo['overrall_score'] ?? 0 }} @php $writingPart = collect($parts)->firstWhere('test_format', 15); $hasWriting = $writingPart !== null; @endphp @if($hasWriting && !$writingConfigured) Writing (Không được cấu hình): {{ $writingPart['score'] ?? 0 }} @endif
@foreach($parts as $index => $part)

{{ $part['name'] }}

Điểm: {{ $part['score'] }} @if($part['correct_answer'] !== null && $part['total_questions'] !== null) ({{ $part['correct_answer'] }}/{{ $part['total_questions'] }} câu đúng) @endif
@endforeach

Thông tin học sinh

Họ tên

{{ $studentInfo['student_name'] }}

Email

{{ $studentInfo['student_email'] }}

Điểm tổng

{{ $examData['overall_score'] ?? 0 }} điểm

Thời gian bắt đầu

{{ $examData['timeStart'] ? \Carbon\Carbon::parse($examData['timeStart'])->addHours(7)->format('H:i d/m/Y') : 'N/A' }}

Thời gian kết thúc

{{ $examData['timeFinish'] ? \Carbon\Carbon::parse($examData['timeFinish'])->addHours(7)->format('H:i d/m/Y') : 'N/A' }}

@endsection