@extends('admin.layout') @section('title', 'Auditoría') @section('page_title', 'Bitácora de auditoría') @section('container_class', 'container-fluid py-3') @section('content')
@foreach($distinctActions as $action) @endforeach
@forelse($logs as $log) @empty @endforelse
ID Fecha Actor Acción Entidad Metadata
{{ $log->id }} {{ $log->created_at }} {{ $log->actor?->name ?? 'system' }} {{ $log->action }} {{ $log->entity_type }}#{{ $log->entity_id }} {{ json_encode($log->metadata) }}
Sin registros
@endsection