Editar Documento
Documento #{{ $document->id }} - {{ $countryName }}
Creado: {{ \Carbon\Carbon::parse($document->created_at)->format('d/m/Y H:i') }}
Estado: {{ ucfirst($document->status) }}
@if($document->payment_gateway)
Gateway: {{ $document->payment_gateway }}
@endif
@if($document->bot_status)
@php
$statusColors = [
'IN_QUEUE' => 'warning',
'PROCESSING' => 'info',
'COMPLETED' => 'success',
'FAILED' => 'danger',
'WAITING' => 'primary'
];
$color = $statusColors[$document->bot_status] ?? 'secondary';
@endphp
Bot: {{ $document->bot_status }}
@else
Bot: N/A
@endif
Estado del Bot
Campos del Documento
{{ count($documentData) }} campos
Volver
@if(count($documentData) > 0)
@else
@endif
@foreach($documentData as $key => $value)
@endforeach
@if(is_array($value))
{{ json_encode($value, JSON_PRETTY_PRINT) }}
@else
{{ $value }}
@endif
No hay datos disponibles
El campo data de este documento está vacío.