@extends('layouts.main_dashboard.app') @php($routePrefix = auth()->user()?->usesStaffPortal() ? 'teacher' : 'admin') @section('title', __('dashboard.Student Answers')) @section('page_heading', __('dashboard.Student Answers')) @section('breadcrumb') @endsection @section('actions') {{ __('dashboard.View Quiz') }} {{ __('dashboard.Edit Quiz') }} @endsection @section('content')

{{ __('dashboard.Student Answers for') }} {{ $quiz->title }}

@if($quizAnswers->isEmpty())
{{ __('dashboard.No student answers found for this quiz yet.') }}
@else
@foreach($quizAnswers as $quizAnswer) @endforeach
{{ __('dashboard.Student Name') }} {{ __('dashboard.Solution time') }} {{ __('dashboard.Score') }} {{ __('dashboard.Action') }}
{{ $quizAnswer->student->name ?? 'N/A' }} {{ round($quizAnswer->solution_time / 60, 2) }} {{ __('dashboard.Minutes') }} {{ $quizAnswer->student_score }} / {{ $quizAnswer->quiz_max_score }} {{ __('dashboard.Actions') }}
@endif
@endsection