{{-- Leaderboard mini --}}
🏆 Top Kontributor
@php $topUsers = \App\Models\User::orderBy('total_points', 'desc')->take(5)->get(); @endphp
@foreach($topUsers as $i => $topUser)
@if($i === 0) 🥇 @elseif($i === 1) 🥈 @elseif($i === 2) 🥉 @else {{ $i + 1 }} @endif {{ $topUser->name }} {{ number_format($topUser->total_points) }} pts
@endforeach
{{-- Daily Check-in --}} @auth
🔥 Daily Check-in
@if(auth()->user()->checkedInToday())
✅ Sudah check-in hari ini!
@else
@csrf
@endif
@endauth