@extends('layouts.admin') @section('page_kicker', 'Audit') @section('page_title', 'Security & audit logs') @section('content')

System activity logs

Immutable trail of privileged actions.

@if($logs instanceof \Illuminate\Pagination\AbstractPaginator)
@foreach($logs as $log) @endforeach
When User Event Module IP
{{ $log->created_at }} {{ $log->user->name ?? 'system' }} {{ $log->event_type }} {{ $log->module }} {{ $log->ip_address }}
{{ $logs->links() }}
@else

Audit logs table not available yet.

@endif
@endsection