@extends('components.app-layout') @section('title', 'Activity Logs') @section('subtitle', 'Monitor and review system activity logs') @section('content')
Monitor system activities and user actions
Total Logs
{{ number_format($stats['total_logs']) }}
Today's Logs
{{ number_format($stats['today_logs']) }}
Critical Alerts
{{ number_format($stats['critical_logs']) }}
Failed Logins
{{ number_format($stats['failed_logins']) }}
| Activity | User | Severity | IP Address | Time | Actions |
|---|---|---|---|---|---|
|
{{ ucfirst(str_replace('_', ' ', $log->action)) }}
{{ Str::limit($log->description, 50) }}
|
{{ $log->user ? $log->user->name : 'System' }}
{{ ucfirst($log->user_type ?? 'system') }}
|
{{ ucfirst($log->severity) }} | {{ $log->ip_address ?? '-' }} |
{{ $log->created_at->format('M j, Y') }}
{{ $log->created_at->format('g:i A') }}
|
View |
|
No activity logs found |
|||||