@extends('layouts.app') @section('title', 'Achievements & Medal Tally - Lumbini Province Taekwondo Association') @section('content')

LPTA Hall of Fame

🥇
{{ $counts['gold'] ?? 0 }}
Gold Medals
🥈
{{ $counts['silver'] ?? 0 }}
Silver Medals
🥉
{{ $counts['bronze'] ?? 0 }}
Bronze Medals
@if($achievements->count() > 0)
@foreach($achievements as $ach)
@if($ach->medal_type === 'gold') 🥇 @elseif($ach->medal_type === 'silver') 🥈 @elseif($ach->medal_type === 'bronze') 🥉 @else 🏅 @endif

{{ $ach->title }}

{{ $ach->player_name }}
{{ $ach->achievement_date->format('M d, Y') }}
@if($ach->description)

{{ Str::limit($ach->description, 100) }}

@endif
View Details
{{ ucfirst($ach->type) }}
@endforeach
@else

No tournament achievements recorded yet.

@endif
@endsection