@extends('layouts.base') @section('content') @section('breadcrumb') @endsection

Webhooks

Consultez tous les webhooks reçus par l'application

Liste des webhooks
{{ $webhooks->total() }} webhook{{ $webhooks->total() > 1 ? 's' : '' }}
@if($webhooks->isEmpty())
Aucun webhook enregistré.
@else
@foreach($webhooks as $webhook) @endforeach
Date Type Statut Body Actions
{{ $webhook->created_at->format('d/m/Y') }}
{{ $webhook->created_at->format('H:i:s') }}
{{ $webhook->type }} @php $statusColors = [ 'CREATED' => 'primary', 'IGNORED' => 'secondary', 'DONE' => 'success', 'MISSED' => 'warning', ]; $color = $statusColors[$webhook->status->value] ?? 'secondary'; @endphp {{ $webhook->status->value }}
{{ Str::limit(json_encode($webhook->body), 100) }}
Voir
@endif
@endsection