@extends('layouts.admin') @section('title', 'Admin Activity Logs') @section('content')
Track user actions and changes
| Time | User | Action | Description | Details |
|---|---|---|---|---|
|
{{ $log->created_at->format('M d, Y') }}
{{ $log->created_at->format('H:i:s') }}
|
{{ substr($log->user->name ?? '?', 0, 1) }}
{{ $log->user->name ?? 'System/Unknown' }}
{{ $log->ip_address }}
|
@php $color = match ($log->action) { 'created' => 'text-green-600 bg-green-50', 'updated' => 'text-blue-600 bg-blue-50', 'deleted' => 'text-red-600 bg-red-50', default => 'text-slate-600 bg-slate-50' }; @endphp {{ $log->action }} |
{{ $log->description }}
{{ $log->subject_type }}
#{{ $log->subject_id }}
|
@if($log->properties && count($log->properties) > 0)
|
| No activity logs found. | ||||