@extends('layouts.app') @section('title', 'Audit Logs') @section('page-title', 'Audit Logs') @section('content')

System Audit Logs

@forelse($logs as $log) @empty @endforelse
User Action Resource IP Address Date
{{ $log->user->name ?? 'System' }} {{ ucfirst($log->action) }} {{ $log->resource ?? 'N/A' }} {{ $log->ip_address ?? '-' }} {{ $log->created_at->format('M d, Y H:i') }}
No audit logs found
@if($logs->hasPages())
{{ $logs->links() }}
@endif
@endsection