@extends('layouts.base') @section('content') @section('breadcrumb') @endsection
Créé le {{ $httpRequest->created_at->format('d/m/Y à H:i:s') }} @if($httpRequest->response_at) • Réponse reçue le {{ $httpRequest->response_at->format('d/m/Y à H:i:s') }} @php $duration = $httpRequest->created_at->floatDiffInSeconds($httpRequest->response_at) * 1000; @endphp ({{ number_format($duration, 0) }} ms) @endif
@if($httpRequest->token)
Token : {{ $httpRequest->token }}
{{ $httpRequest->url }}
| Clé | Valeur |
|---|---|
{{ $key }} |
@if(is_array($value))
{{ json_encode($value, JSON_PRETTY_PRINT) }}
@else
{{ $value }}
@endif
|
Aucun header enregistré
@endif{{ is_array($httpRequest->payload) ? json_encode($httpRequest->payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) : $httpRequest->payload }}
@else
Aucun payload
@endif{{ $httpRequest->response_content }}
@else
Aucune réponse enregistrée
@endif