Editar Documento

{{ $country }}
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
@if($document->bot_status)
Estado del Bot
@endif
Campos del Documento
{{ count($documentData) }} campos Volver
@if(count($documentData) > 0)
@foreach($documentData as $key => $value)
@if(is_array($value)) {{ json_encode($value, JSON_PRETTY_PRINT) }} @else {{ $value }} @endif
@endforeach
@else
No hay datos disponibles

El campo data de este documento está vacío.

@endif