@extends('layouts.admin')
@section('title', 'Dashboard')
@section('content')
Total Projects
{{ $stats['total_projects'] }}
Active Engineers
{{ $stats['total_engineers'] }}
Pending Tasks
{{ $stats['total_tasks'] - $stats['completed_tasks'] }}
Open Requests
{{ $stats['pending_maintenance_requests'] }}
Recent Activity
System-wide event logs
| Time | User | Action | Module |
|---|---|---|---|
| {{ optional($log->created_at)->format('d M Y, H:i') }} | {{ $log->user?->name ?? '-' }} | {{ $log->action }} | {{ $log->module }} |
| No activity yet. | |||
Latest Reports
Submissions from site leads
| Project | Title | Supervisor |
|---|---|---|
| {{ $report->project?->code ?? '-' }} | {{ $report->title }} | {{ $report->siteSupervisor?->name ?? '-' }} |
| No reports yet. | ||