Entry ID: {{ $entry->id }}
@if($isWinner) 🏆 Winner @else Not Winner @endifSubmitted At: {{ $entry->created_at?->format('d M Y, h:i A') ?? '-' }}
@if($isWinner && optional($winner)->prize)🎁 Prize: {{ optional($winner->prize)->title ?? '-' }}
@php $desc = trim(strip_tags(optional($winner->prize)->description ?? '')); @endphp{{ $desc ?: '-' }}
Quiz Answers:
{{ $question->question_text ?? '-' }}
Ans: {{ $answers->pluck('option.option_text')->filter()->join(', ') ?: '-' }}
@if($isCompact)@if($isCorrect) ✔ @else ✘ @endif
@elseCorrect: {{ $correctOptions?->pluck('option_text')->join(', ') ?: '-' }}
@if($isCorrect) ✔ Correct @else ✘ Wrong @endif
@endifMatch Predictions:
{{ $p->match?->homeTeam?->team_name ?? 'Team A' }} vs {{ $p->match?->awayTeam?->team_name ?? 'Team B' }}
Sport: Football
@if($resultLabel)Final: {{ $resultLabel }}
@endifPredicted: {{ $predictionLabel }}
No entries found.
@endforelse