{{-- resources/views/gis/show.blade.php --}} @extends('layouts.app') @section('title', 'Детали запроса ГИС ЖКХ #' . $request->id) @section('content')
| № запроса: | {{ $request->request_number }} |
|---|---|
| Дата запроса: | {{ $request->request_date ? $request->request_date->format('d.m.Y') : '-' }} |
| Срок ответа: | {{ $request->deadline ? $request->deadline->format('d.m.Y') : '-' }} |
| Идентификатор объекта: | {{ $request->object_identifier ?? '-' }} |
| Тип объекта: | {{ $request->object_type ?? '-' }} |
| Адрес: | {{ $request->address ?? '-' }} |
| Организация: | {{ $request->organization_name ?? '-' }} |
|---|---|
| ОГРН: | {{ $request->organization_ogrn ?? '-' }} |
| Телефон: | {{ $request->organization_phone ?? '-' }} |
| Сотрудник: | {{ $request->employee_name ?? '-' }} |
| Найденный лицевой счет: | @if($request->matched_account_number) {{ $request->matched_account_number }} @else Не найден @endif |
|---|---|
| Сопоставленный адрес: | {{ $request->matched_address ?? '-' }} |
| Уверенность сопоставления: |
@if($request->match_confidence)
|
| Наличие задолженности: | @if($request->has_debt) Есть подтвержденная задолженность @else Нет задолженности @endif |
|---|---|
| Статус обработки: | {{ $request->status_text }} |
| Дата обработки: | {{ $request->approved_at ? $request->approved_at->format('d.m.Y H:i:s') : '-' }} |
{{ json_encode($request->response_data, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}