@extends('admin.layout') @section('title', 'Audit Log') @section('content')

Audit Log

@foreach($logs as $log) @endforeach
ZamanKullanıcıAksiyonHedefIP
{{ $log->created_at?->format('d.m.Y H:i') }} {{ $log->user?->name }} {{ $log->action }} {{ $log->auditable_type ? class_basename($log->auditable_type).' #'.$log->auditable_id : '-' }} {{ $log->ip_address }}
@endsection