{{ __('📊 Dashboard Admin') }}

{{-- Kartu Statistik --}}
@php $cards = [ ['label' => 'Total Karyawan', 'value' => $totalKaryawan, 'icon' => 'users', 'color' => 'blue'], ['label' => 'Total Atasan', 'value' => $totalAtasan, 'icon' => 'user-group', 'color' => 'green'], ['label' => 'Cuti Pending', 'value' => $pendingLeaves, 'icon' => 'document-text', 'color' => 'yellow'], ['label' => 'Lembur Pending', 'value' => $pendingOvertimes, 'icon' => 'clock', 'color' => 'red'], ]; @endphp @foreach ($cards as $card)

{{ $card['label'] }}

{{ $card['value'] }}

@endforeach
{{-- Panel Aktivitas Terbaru --}}

📅 Aktivitas Terbaru

@forelse ($recentLogs as $log)
{{ substr($log->user->name ?? 'S', 0, 1) }}

{{ $log->user->name ?? 'Sistem' }} {{ str_replace('_', ' ', $log->activity) }} #{{ $log->auditable_id }} ({{ class_basename($log->auditable_type) }}).

{{ $log->created_at->diffForHumans() }}

@empty

Belum ada aktivitas tercatat.

@endforelse