@extends('layouts.admin') @section('title','Payment webhooks') @section('heading','Payment webhook operations') @section('content')

Verified provider events

Inspect processing outcomes and safely replay failed normalized events.

Payment intents
@forelse($events as $event) @empty @endforelse
Gateway / eventStateAttemptsFailureReceived / processedReplay
{{ strtoupper($event->gateway) }}
{{ $event->event_id }}
{{ $event->status }}{{ $event->attempt_count }}/10 @if($event->lastReplayer)
Last by {{ $event->lastReplayer->name }}@endif
{{ $event->error ? Str::limit($event->error,160) : '—' }}{{ $event->created_at->format('d M Y H:i') }}
{{ $event->processed_at?->format('d M Y H:i') ?: 'Not processed' }}
@if($event->status==='failed' && $event->attempt_count<10)
@csrf
@else Not eligible @endif
No verified webhook events found.
{{ $events->links() }} @endsection