@extends('layouts.admin') @section('page_title', 'Activity Logs') @section('content')
Review the audit trail of all user activities and system events.
| # | 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 }}
|
{{ $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) }}