{{ __('labels.activity_log') }}

@if(isset($activityLog)) @foreach($activityLog as $item)
@php $activityTitle = Str::title(str_replace('_', ' ', $item->activity_type)); @endphp {{ $activityTitle }} {{ $item->created_at?->format('d.m.Y H:i:s') }}

{{ $item->activity_detail }}

{{ __('labels.ip') }}:
{{ $item->ip_address }}
{{ __('labels.method') }}:
{{ $item->method }}
{{ __('labels.url') }}:
{{ $item->url }}
@endforeach @endif