@extends('layouts.admin') @section('title','Dashboard') @section('content')
{{ $children }}
👦 Kinder
{{ $questions }}
❓ Fragen
{{ $attempts_today }}
📝 Antworten heute
{{ $pending }}
🎁 Offene Einlösungen

🏆 Bestenliste

@forelse($topKids as $i => $kid)
{{ ['🥇','🥈','🥉','4.','5.'][$i] }} {{ $kid->name }}
🪙 {{ $kid->points }}
@empty

Noch keine Kinder angelegt.

@endforelse

📝 Letzte Aktivität

@forelse($recentAttempts as $a)
{{ $a->is_correct ? '✅' : '❌' }} {{ $a->user->name }} – {{ $a->question->subject->name }}
{{ $a->created_at->diffForHumans() }}
@empty

Noch keine Aktivität.

@endforelse
@endsection