@foreach($achievements as $ach)
@php
$gradient = match($ach->place) { 1 => 'gold-gradient', 2 => 'silver-gradient', 3 => 'bronze-gradient', default => 'bg-slate-700' };
$medalIcon = match($ach->place) { 1 => '🥇', 2 => '🥈', 3 => '🥉', default => '#' };
$borderHover = match($ach->place) {
1 => 'hover:border-amber-400 dark:hover:border-amber-500/30',
2 => 'hover:border-slate-400 dark:hover:border-slate-400/30',
3 => 'hover:border-orange-400 dark:hover:border-orange-500/30',
default => 'hover:border-blue-400 dark:hover:border-blue-500/30'
};
$textResultColor = match($ach->place) {
1 => 'text-blue-600 dark:text-blue-400',
2 => 'text-blue-600 dark:text-blue-400',
3 => 'text-cyan-600 dark:text-cyan-400',
default => 'text-gray-900 dark:text-white'
};
$rankLabel = match($ach->place) {
1 => '
🏆 Gold',
2 => '
🥈 Silver',
3 => '
🥉 Bronze',
default => '
Rank ' . $ach->place . ''
};
@endphp
{{ $medalIcon }}
{{ $ach->competition_name }}
{{ $ach->discipline->name }} • {{ $ach->venue }}
{{ $ach->result_mark }}
{!! $rankLabel !!}
@endforeach