@extends('layouts.admin') @section('page_title', 'Admin Dashboard') @section('content')
Total Employees

{{ $stats['total_employees'] }}

Present Today

{{ $stats['present_today'] }}

@if ($stats['late_today'] > 0) {{ $stats['late_today'] }} late @endif
On Leave

{{ $stats['on_leave'] }}

Active Projects

{{ $stats['active_projects'] }}

Attendance Trend (Current Month)
System Activity Logs
View All
@forelse($recentLogs as $log)
{{ $log->user->name }} — {{ $log->action }}
{{ $log->created_at->diffForHumans() }}

{{ $log->ip_address }} {{ Str::limit($log->user_agent, 40) }}

@empty
No activity recorded yet
@endforelse
Pending Approvals
Work Reports {{ $stats['pending_reports'] }}
Go to Approvals
@push('scripts') @endpush @endsection