@extends('layouts.app') @section('title', 'Auditoria') @section('content')
CONTROLO E RASTREABILIDADE

Auditoria do sistema

Registo cronológico das alterações e eventos relevantes, sem registar simples consultas.

{{ number_format($audits->total(),0,',','.') }} evento(s)
@forelse($audits as $audit)@empty@endforelse
Data/horaEventoDescriçãoResponsávelFilialOrigem
{{ $audit->created_at?->format('d/m/Y') }}{{ $audit->created_at?->format('H:i:s') }}{{ $audit->event }}{{ $audit->description }}{{ $audit->actor?->name ?? 'Sistema' }}{{ $audit->branch?->name ?? 'Consolidado/Sistema' }}{{ $audit->ip_address ?: '—' }}
Não foram encontrados eventos com estes filtros.
Página {{ $audits->currentPage() }} de {{ $audits->lastPage() }}
@if($audits->previousPageUrl())← Anterior@endif @if($audits->nextPageUrl())Seguinte →@endif
@endsection