@extends('layouts.app') @section('content')
Audit trail

System activity logs

Track important user actions across the system.
{{ $logs->total() }} records Page {{ $logs->currentPage() }} of {{ $logs->lastPage() }}

Recent activity

Showing {{ $logs->firstItem() ?? 0 }} to {{ $logs->lastItem() ?? 0 }} of {{ $logs->total() }} entries.
{{ $logs->onEachSide(1)->links() }}
@forelse($logs as $log) @empty @endforelse
User Action Description IP Time
{{ $log->user->name ?? 'System' }} {{ $log->action }} {{ $log->description }} {{ $log->ip_address ?: '-' }} {{ $log->created_at->format('d M h:i A') }}
No activity logs yet.
{{ $logs->onEachSide(1)->links() }}
@endsection