{{-- resources/views/objects/show.blade.php --}} @extends('layouts.app') @section('title', $object->name) @php $individualDebtors = \App\Models\IndividualDebtor::orderBy('last_name')->get(); $legalDebtors = \App\Models\LegalDebtor::orderBy('full_name')->get(); @endphp @section('content')
| Адрес | {{ $object->address }} |
| Тип объекта | {{ $object->object_type }} |
| Кадастровый номер | {{ $object->cadastral_number }} |
| Площадь | {{ number_format($object->area, 2, ',', ' ') }} м² |
| Прибор учета | {{ $object->metering_device_number }} |
| Мощность | {{ $object->connected_capacity }} кВт |
| Описание | {{ $object->description }} |
Нет связанных должников
Нет связанных дел
@endif