@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('content')

{{ __('dashboard.Student Answers') }}

@foreach($quizAnswer->quizAnswerDetails as $answerDetail) @endforeach
{{ __('dashboard.Question') }} {{ __('dashboard.Answer') }} {{ __('dashboard.Score') }} {{ __('dashboard.Action') }}
{{ $answerDetail->quiz_question->question->question_text ?? __('dashboard.Question not found') }} {{ $answerDetail->answer }} {{ $answerDetail->student_score }}
@endsection @section('scripts') @endsection