@extends('admin.panel.layout') @section('admin_content')
Übersicht

Admin Dashboard

Alle Websites, Bot-Aktivität und System-Status auf einen Blick.

Reports senden Anfragen ansehen
{{-- Metric Cards --}}
Besucher heute {{ $combinedToday }}
Diese Woche {{ $combinedWeek }}
Gesamt {{ number_format($combinedTotal, 0, ',', '.') }}
Bot-Nutzer {{ count($botUsers) }}
Offene Anfragen {{ count($openRequests) }}
Bot-Anfragen gesamt {{ count($botRequests) }}
{{-- Per-site visitor table --}}
Traffic

Besucher pro Website

@foreach ($visitorStats as $site => $stats) @endforeach
Website Heute Diese Woche Gesamt
{{ $site }} {{ $stats['today'] }} {{ $stats['week'] }} {{ number_format($stats['total'], 0, ',', '.') }}
{{-- System Status --}}
Monitoring

System-Status

@foreach ($monitoredSites as $site)
{{ $site }} Prüfe...
@endforeach
{{-- ===== Eigene Projekt-Site: haehner-printing.de — Live-Health via /api/health.php ===== --}}
Eigenes Projekt · Live-Health

haehner-printing.de

Öffnen
Lade Health-Report …
{{-- Last 5 Bot Requests --}}
Bot

Letzte Anfragen

Alle ansehen
@forelse ($recentRequests as $req) @empty @endforelse
# Typ Name Datum Status
{{ $req['id'] ?? '-' }} {{ $req['type'] ?? '-' }} {{ $req['name'] ?? '-' }} {{ isset($req['created_at']) ? date('d.m.Y H:i', strtotime($req['created_at'])) : ($req['date'] ?? '-') }} {{ $req['status'] ?? 'offen' }}
Keine Anfragen vorhanden.
@endsection