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

Webhook #{{ $webhook->id }}

Reçu le {{ $webhook->created_at->format('d/m/Y à H:i:s') }}

Informations générales
{{ $webhook->type }}
@php $statusColors = [ 'CREATED' => 'primary', 'IGNORED' => 'secondary', 'DONE' => 'success', 'MISSED' => 'warning', ]; $color = $statusColors[$webhook->status->value] ?? 'secondary'; @endphp {{ $webhook->status->value }}
{{ $webhook->created_at->format('d/m/Y H:i:s') }}
Contenu (Body)
{{ json_encode($webhook->body, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
@endsection