@extends('layouts.admin') @section('content')

Answer Sheet Details

← Back

Student Information

Student Name
{{ $answerSheet->student->name ?? '-' }}
Roll Number
{{ $answerSheet->student->roll_number ?? '-' }}
Subject
{{ $answerSheet->subject->name ?? '-' }}
Center
{{ $answerSheet->center->name ?? '-' }}
Submitted At
{{ $answerSheet->submitted_at ?? '-' }}
Sync Status
{{ ucfirst($answerSheet->sync_status) }}

Score Summary

Total AI Score
{{ $answerSheet->total_ai_score ?? 0 }}
Total Examiner Score
{{ $answerSheet->total_examiner_score ?? 0 }}
Total Max Marks
{{ $answerSheet->total_max_marks ?? 0 }}

Answers

@forelse($answerSheet->answers as $answer) @empty @endforelse
Question # Question Text AI Score AI Confidence Examiner Score Examiner Status Reviewed At
{{ $answer->question->question_number ?? '-' }} {{ Str::limit($answer->question->text ?? '', 80) }} {{ $answer->ai_score ?? '-' }} {{ $answer->ai_confidence ? number_format($answer->ai_confidence * 100, 1) . '%' : '-' }} {{ $answer->examiner_score ?? '-' }} {{ $answer->examiner->name ?? '-' }} {{ ucfirst($answer->status ?? 'pending') }} {{ $answer->reviewed_at ?? '-' }}
No answers found.
@endsection