@extends('layouts.admin') @section('title', 'Entity Audit Logs') @section('header')
#{{ $entityId }}
| Event | User | Date/Time | Actions |
|---|---|---|---|
|
@if($log->event == 'created')
@if($log->event == 'created')
Created
@elseif($log->event == 'updated')
Updated
@elseif($log->event == 'deleted')
Deleted
@else
{{ ucfirst($log->event) }}
@endif
@if(!$loop->last)
@endif
|
@if($log->user)
{{ substr($log->user->name, 0, 2) }}
{{ $log->user->name }}
{{ $log->user->email }}
System
Automated process
|
{{ $log->created_at->format('M d, Y') }}
{{ $log->created_at->format('h:i A') }}
|
View Details |
No audit logs foundThis entity has no recorded audit history. @if(request()->has('page') && request('page') > 1) @endif |
|||