Monitoring {{-- FILTERS --}}
{{-- Search --}}
{{-- User filter --}}
{{-- Date From --}}
{{-- Time From --}}
{{-- Date To --}}
{{-- Time To --}}
{{-- Clear --}}
{{-- RESULTS --}}
{{ $history->total() }} {{ Str::plural('record', $history->total()) }} found
Loading...
@if($history->isEmpty())

No history records match your filters.

@else
@foreach($history as $item) @endforeach
User Action Context Date & Time
@if($item->user) {{ $item->user->name_first }} {{ $item->user->name_last }}
{{ $item->user->username }}
@else System @endif
{{ $item->action }} @if($item->context) {{ json_encode($item->context) }} @else @endif {{ $item->created_at->diffForHumans() }}
{{ $item->created_at->format('d/m/Y H:i') }}
@endif
{{ $history->links() }}