@extends('layouts.admin') @section('title', 'Processing Log #' . $log->id) @section('header', 'Processing Log #' . $log->id) @section('content')
Retour à la liste

Informations

ID
{{ $log->id }}
Type de source
{{ $log->source_type }}
Source Identifier
{{ $log->source_identifier ?? 'N/A' }}
Statut
{{ ucfirst($log->status) }}
Tentatives
{{ $log->retry_count }}
Type d'erreur
{{ $log->error_type ?? 'N/A' }}
Date de création
{{ $log->created_at->format('d/m/Y H:i:s') }}
Dernière mise à jour
{{ $log->updated_at->format('d/m/Y H:i:s') }}
@if($log->error_message)

Message d'erreur

{{ $log->error_message }}

@if($log->error_code)

Code: {{ $log->error_code }}

@endif
@endif @if($log->raw_data)

Données brutes

{{ json_encode($log->raw_data, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
@endif @if($log->response_data)

Données de réponse

{{ json_encode($log->response_data, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
@endif
@endsection