@extends('layouts.child') @section('content')
{{ $attempt->quiz->title }}
| # | Frage | Ergebnis | Münzen |
|---|---|---|---|
| {{ $i+1 }} | {{ Str::limit($a->question->question_text, 55) }} | @if($a->is_correct) ✅ {{ $display }} @else ❌ {{ $display }} @endif | {{ $a->is_correct ? '+' . $a->points_earned : '0' }} |