@extends('layouts.app') @section('title', 'Webhook Details') @section('content')
{{ ucfirst($webhook->type) }} webhook source
Status
@if($webhook->is_active) Active @else Inactive @endif
Total Requests
{{ $webhook->webhook_logs_count ?? 0 }}
Successful
{{ $webhook->success_count ?? 0 }}
Failed
{{ $webhook->failed_count ?? 0 }}
Configure this URL in your payment platform's webhook settings
Visit this URL to test if the webhook is accessible
Last 50 webhook requests received
| Time | Event Type | Status | Order | IP Address | Details |
|---|---|---|---|---|---|
|
{{ $log->created_at->format('M d, H:i:s') }}
{{ $log->created_at->diffForHumans() }}
|
{{ $log->event_type ?? 'unknown' }} | @if($log->status === 'success') Success @elseif($log->status === 'failed') Failed @elseif($log->status === 'ignored') Ignored @else {{ ucfirst($log->status) }} @endif | @if($log->order) {{ $log->order->order_number }} @else - @endif | {{ $log->ip_address ?? '-' }} |
No webhook requests received yet
Configure the webhook URL in your payment platform to start receiving orders