@extends('contentNavbarLayout') @section('title', 'Audit Trail') @section('content')
| By | {{ $log->user_name }} |
|---|---|
| Date / Time | {{ $log->created_at->format('d F Y, h:i A') }} |
| IP Address | {{ $log->ip_address }} |
| Action | {{ $log->action }} |
| Resource | {{ $log->resource }} |
| Category | {{ $log->category }} |
| Severity | @if($log->severity == 'CRITICAL') CRITICAL @elseif($log->severity == 'WARNING') WARNING @else {{ $log->severity }} @endif |
| Details |
@if(is_array($details))
{{ json_encode($details, JSON_PRETTY_PRINT) }}
@else
{{ $details }}
@endif
|