Inbound Audit Trail

Monitor and debug incoming data streams

@if($sourceSlug)
Source: {{ $sourceSlug }}
@endif
@forelse($logs as $log) @empty @endforelse
Received At Source & ID Verification Status Actions
{{ $log->created_at->format('H:i:s') }}
{{ $log->created_at->format('d M Y') }}
{{ $log->source }} {{ $log->external_id ?? 'No Ext ID' }}
CID: {{ substr($log->correlation_id, 0, 8) }}...
@if($log->is_verified) Authentic @else Unverified @endif {{ $log->status }}
@if($log->status === 'failed') @endif

No Inbound Logs Found

Try adjusting your filters or search terms

{{ $logs->links() }}
@if($selectedLog)

Deep Audit: Inbound Event

Source: {{ $selectedLog->source }} • Received: {{ $selectedLog->created_at->format('M d, Y @ H:i:s') }}

Process Status {{ $selectedLog->status }}
Verification {{ $selectedLog->is_verified ? 'PASS (AUTHENTIC)' : 'FAIL / OPEN' }}
Attempts {{ $selectedLog->attempt_count }} tries
Correlation ID {{ $selectedLog->correlation_id ?? 'N/A' }}

HTTP Headers

@json($selectedLog->headers, JSON_PRETTY_PRINT)

Event Payload

@json($selectedLog->payload, JSON_PRETTY_PRINT)
@if($selectedLog->error_message)

Processing Failure Logs

Exception Caught during execution:

{{ $selectedLog->error_message }}

@endif
@if($selectedLog->status === 'failed') @endif
@endif