Document Details
Document ID: {{ $documentId }} - {{ $countryName }}
@if($documentInfo && $documentInfo->key)
Document Key:
{{ $documentInfo->key }}
@endif
Document Information
@if($documentInfo)
@php
$docData = json_decode($documentInfo->data, true) ?? [];
@endphp
@if($botRecords && $botRecords->count() > 0)
@endif
@if(!empty($docData))
@endif
@else
Database Fields
| id | {{ $documentInfo->id }} |
| created_at | {{ $documentInfo->created_at }} |
| updated_at | {{ $documentInfo->updated_at }} |
Bot Records
| Bot ID | Status | Created At | Updated At | Actions |
|---|---|---|---|---|
{{ $bot->id }} |
@if($bot->status == 'IN_QUEUE') {{ $bot->status }} @elseif($bot->status == 'PROCESSING') {{ $bot->status }} @elseif($bot->status == 'COMPLETED') {{ $bot->status }} @elseif($bot->status == 'FAILED') {{ $bot->status }} @else {{ $bot->status }} @endif | {{ $bot->created_at }} | {{ $bot->updated_at }} |
JSON Data Fields
| Field | Value | Actions |
|---|---|---|
| {{ $key }} | @if($key === 'plan') {{ $value }} @else {{ $value ?: '' }} @endif | |
| {{ $key }} | {{ json_encode($value) }} |
No additional document information found.
@endif