@extends('layouts.student') @section('content')
@if ($quizAttempts->isEmpty())

You haven't attempted any quizzes yet.

@else @foreach ($quizAttempts as $attempt) @endforeach
Quiz Title Topic Score Total Marks Date Attempted Actions
{{ $attempt->quiz->title }} {{ $attempt->quiz->topic->title }} {{ $attempt->score }} {{ $attempt->total_marks }} {{ $attempt->created_at->format('d M, Y h:i A') }} View Result
@endif
@endsection