🌍 Add Top-Countries, Top-Meetups, and Activities dashboard components

- Introduced three new Livewire components for the dashboard:
  - Top Countries: Displays countries with the most users.
  - Top Meetups: Highlights meetups with the largest user counts.
  - Activities: Showcases recent meetups and events.
- Updated `dashboard.blade.php` to lazy-load these components.
- Expanded multilingual support for relevant labels across all languages.
This commit is contained in:
HolgerHatGarKeineNode
2025-11-24 16:49:53 +01:00
parent 4a101c22a5
commit 54f79309dc
10 changed files with 423 additions and 6 deletions

View File

@@ -204,4 +204,11 @@ class extends Component {
</div>
</div>
</div>
{{-- Neue Statistiken und Activities (Lazy loaded) --}}
<div class="grid auto-rows-min gap-4 grid-cols-1 md:grid-cols-2 2xl:grid-cols-3">
<livewire:dashboard.top-countries lazy/>
<livewire:dashboard.top-meetups lazy/>
<livewire:dashboard.activities lazy/>
</div>
</div>