@extends('layouts.app') @section('title', 'Aktivite Log Detayı') @section('content')

Aktivite Log Detayı

Log ID: #{{ $activityLog->id }}

Temel Bilgiler

Tarih/Saat
{{ $activityLog->created_at->format('d.m.Y H:i:s') }}
Aksiyon
{{ $activityLog->action_label }}
Kullanıcı
@if($activityLog->user) {{ $activityLog->user->name }} @else Sistem @endif
IP Adresi
{{ $activityLog->ip_address ?? '-' }}
Açıklama
{{ $activityLog->description }}
@if($activityLog->subject)

İlgili Kayıt

Tip
{{ class_basename($activityLog->subject_type) }}
ID
{{ $activityLog->subject_id }}
@if($activityLog->subject_type === 'App\Models\Site') @endif
@endif
@if($activityLog->properties)

Detaylar

{{ json_encode($activityLog->properties, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES) }}
@endif @if($activityLog->user_agent)

User Agent

{{ $activityLog->user_agent }}

@endif
@endsection