@extends('admin.layouts.app') @section('title', 'Activity Logs') @section('content')
Date & Time | User | Action | Model | Description | Changes |
---|---|---|---|---|---|
{{ $log->created_at->format('Y-m-d H:i:s') }} | {{ $log->user->name ?? 'System' }} | {{ Str::title($log->action) }} | {{ $log->model_type }} #{{ $log->model_id }} | {{ $log->description }} |
@if($log->action === 'update')
@foreach($log->changes as $field => $change)
{{ Str::title(str_replace('_', ' ', $field)) }}:
{{ $change['old'] }}
{{ $change['new'] }}
@endforeach
@elseif($log->action === 'create')
New record created
@else
Record deleted
@endif
|
No logs found. |