@extends('layouts.admin') @section('title', 'Audit Log Detail') @section('page-title', 'Audit Log Detail') @section('page-subtitle', 'Log Entry #' . $log->id) @section('content')
Log ID
#{{ $log->id }}
Timestamp
{{ $log->created_at->format('d M Y H:i:s') }}
User
{{ $log->user_name }}
User ID
{{ $log->user_id }}
Action
{{ $log->action }}
Module
{{ $log->module }}
Description
{{ $log->description }}
IP Address
{{ $log->ip_address }}
User Agent
{{ $log->user_agent }}
@endsection