{{ __('My Results') }}

@forelse($results as $result) @empty @endforelse
Date Taken Score Correct/Wrong Percentage Grade Feedback
{{ $result->created_at->format('M d, Y h:i A') }} {{ $result->score }} / {{ $result->total_questions }} C: {{ $result->correct_answers }} | W: {{ $result->wrong_answers }} {{ round($result->percentage) }}% @php $gradeColors = [ 'Excellent' => 'text-green-600', 'Fantastic' => 'text-green-500', 'Good Pass' => 'text-blue-500', 'Pass' => 'text-yellow-600', 'Fail' => 'text-red-600', ]; $colorClass = $gradeColors[$result->grade] ?? 'text-gray-600'; @endphp {{ $result->grade }} @if($result->percentage >= 85) Excellent performance! Keep it up. @elseif($result->percentage >= 65) Good job! You passed. @else Don't give up! More practice will help. @endif
No test results found. Take your first test today!