@extends('layouts.app') @section('title', 'Activity Log Details') @section('content')
{{ $activityLog->created_at->format('F j, Y g:i A') }}
{{ $activityLog->user->name }}
{{ $activityLog->user->email }}
System
@endif{{ $activityLog->company->name ?? 'N/A' }}
{{ $activityLog->ip_address ?? 'N/A' }}
{{ Str::limit($activityLog->user_agent ?? 'N/A', 50) }}
{{ $activityLog->description }}
{{ json_encode($activityLog->old_values, JSON_PRETTY_PRINT) }}
{{ json_encode($activityLog->new_values, JSON_PRETTY_PRINT) }}