@extends('layouts.admin') @section('title', 'Audit Log') @section('content')
@forelse($logs as $log) @empty @endforelse
DataAcaoUtilizadorEntidadeMotivoIP
{{ $log->created_at->format('d/m/Y H:i:s') }} {{ $log->action }} {{ $log->adminUser->name ?? 'Sistema' }} @if($log->entity_type){{ $log->entity_type }} #{{ $log->entity_id }}@endif {{ \Illuminate\Support\Str::limit($log->reason, 60) }} {{ $log->ip_address }}
Sem registos.
@endsection