@extends('admin.layout') @section('title', 'Detail Activity Log') @section('content')
| ID: | {{ $activityLog->id }} |
| User: |
@if($activityLog->user)
{{ $activityLog->user->name }}
{{ $activityLog->user->email }} @else System @endif |
| Activity Type: | {{ ucfirst(str_replace('_', ' ', $activityLog->activity_type)) }} |
| Description: | {{ $activityLog->description }} |
| Date & Time: |
{{ $activityLog->created_at->format('d/m/Y H:i:s') }}
{{ $activityLog->created_at->diffForHumans() }} |
| Subject Type: |
@if($activityLog->subject_type)
{{ class_basename($activityLog->subject_type) }}
@else
-
@endif
|
| Subject ID: |
@if($activityLog->subject_id)
{{ $activityLog->subject_id }}
@else
-
@endif
|
| IP Address: |
{{ $activityLog->ip_address ?? '-' }}
|
| User Agent: |
{{ $activityLog->user_agent ?? '-' }}
|
| URL: |
{{ $activityLog->url ?? '-' }}
|
| Method: | {{ $activityLog->method ?? '-' }} |
{{ json_encode($activityLog->properties, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
Tidak ada log aktivitas terkait yang ditemukan.