@extends('layouts.admin') @section('page_title', 'Activity Logs') @section('content')

System Logs

Review the audit trail of all user activities and system events.

search
@foreach ($logs as $log) @endforeach
# User Action IP Address Time Device Details
{{ str_pad($loop->iteration, 2, '0', STR_PAD_LEFT) }} @if ($log->user)
{{ substr($log->user->name, 0, 1) }}
{{ $log->user->name }}
@else System Action @endif
{{ $log->action }} {{ $log->ip_address }} {{ $log->created_at->format('M d, Y') }} {{ $log->created_at->format('h:i A') }} {{ Str::limit($log->user_agent, 45) }}

Showing records 1 to {{ count($logs) }}

@endsection @push('styles') @endpush @push('scripts') @endpush