{{-- Información General --}}
| Dirección Completa |
{{ $property->full_address ?: 'No registrada' }} |
| Ciudad |
{{ $property->city ?: 'No registrada' }} |
| Municipio |
{{ $property->municipality ?: 'No registrado' }} |
| Urbanización |
{{ $property->urbanization ?: 'No registrada' }} |
@if($property->building_name)
| Edificio |
{{ $property->building_name }} |
@endif
@if($property->floor_number)
| Piso |
{{ $property->floor_number }} |
@endif
@if($property->house_apartment_number)
| Nº Casa/Apto |
{{ $property->house_apartment_number }} |
@endif
| Área Terreno |
{{ $property->land_area ? $property->land_area . ' m²' : 'No registrada' }} |
| Área Construcción |
{{ $property->construction_area ? $property->construction_area . ' m²' : 'No registrada' }} |
| Área Total |
{{ $property->total_area ? $property->total_area . ' m²' : 'No disponible' }} |
| Años de Antigüedad |
{{ $property->antiquity_years ?: 'No registrada' }} |
| Habitaciones Totales |
{{ $property->rooms_total ?: '0' }} |
| Baños Totales |
{{ $property->bathrooms_total ?: '0' }} |
| Estacionamientos |
{{ $property->parking_spaces ?: '0' }} |
@if($property->parking_covered)
| Estacionamiento Cubierto |
Sí |
@endif
@if($property->parking_uncovered)
| Estacionamiento Descubierto |
Sí |
@endif
@if($property->has_storage_room)
| Cuarto de Depósito |
Sí |
@endif
@if($property->observations)
Observaciones:
{{ $property->observations }}
@endif
{{-- Propietario --}}
| Nombre |
{{ $property->owner_name }} |
| Cédula/RIF |
{{ $property->owner_id_number }} |
| Estado Civil |
{{ ucfirst($property->owner_marital_status ?: 'No registrado') }} |
| Teléfono |
{{ $property->owner_phone }} |
| Email |
{{ $property->owner_email ?: 'No registrado' }} |
| ¿Propietario en Venezuela? |
@if($property->owner_in_venezuela)
Sí
@else
No
@endif
|
| ¿Tiene Poder Legal? |
@if($property->has_power_of_attorney)
Sí
@else
No
@endif
|
{{-- Servicios --}}
Agua
| Pozo Profundo |
@if($property->has_deep_well)
Sí
@else
No
@endif
|
| Tanque Aéreo (lt) |
{{ $property->aerial_tank_capacity ?: 'No registrado' }} |
| Tanque Subterráneo (lt) |
{{ $property->underground_tank_capacity ?: 'No registrado' }} |
| Hidroneumático |
@if($property->has_hydroniumatic)
Sí
@else
No
@endif
|
| Frecuencia Servicio Agua |
{{ $property->water_service_frequency ?: 'No registrada' }} |
Electricidad
| Planta Eléctrica |
@if($property->has_generator)
Sí
@else
No
@endif
|
@if($property->has_generator)
| Cobertura |
{{ ucfirst($property->generator_coverage ?: 'No registrada') }} |
@endif
| Voltaje |
{{ $property->voltage ?: 'No registrado' }} |
Conectividad
| Tipo Internet |
{{ $property->internet_type ?: 'No registrado' }} |
| Proveedor |
{{ $property->internet_provider ?: 'No registrado' }} |
| TV por Cable |
@if($property->has_cable_tv)
Sí
@else
No
@endif
|
| TV Satelital |
@if($property->has_satellite_tv)
Sí
@else
No
@endif
|
@if($property->satellite_tv_provider)
| Proveedor TV Satelital |
{{ $property->satellite_tv_provider }} |
@endif
Gas
| Tipo de Gas |
{{ $property->gas_type ?: 'No registrado' }} |
{{-- Estatus Legal --}}
| Documento |
Estado |
| Documento de Propiedad |
@if($property->has_property_document)
Posee
@else
No posee
@endif
|
| Certificado Catastral |
@if($property->has_cadastral_certificate)
Posee
@if($property->cadastral_in_owner_name)
A nombre del propietario
@endif
@else
No posee
@endif
|
| Solvencia Municipal |
@if($property->has_municipal_solvency)
Posee
@else
No posee
@endif
|
| Certificado SENIAT |
@if($property->has_seniat_certificate)
Posee
@else
No posee
@endif
|
| Solvencia Servicios Públicos |
@if($property->has_utilities_solvency)
Posee
@else
No posee
@endif
|
@if($property->property_type === 'apartamento' || $property->property_type === 'townhouse')
| Solvencia Condominio |
@if($property->has_condo_solvency)
Posee
@else
No posee
@endif
|
@endif
| Libre de Hipoteca |
@if($property->is_mortgage_free)
Sí
@else
No
@if($property->needs_mortgage_release)
Requiere liberación
@endif
@endif
|
{{-- Condiciones Comerciales --}}
| Tipo de Operación |
{{ $property->operation_type_label }} |
| Precio |
${{ number_format($property->price, 2) }} |
| Precio Negociable |
@if($property->price_negotiable)
Sí
@else
No
@endif
|
| Métodos de Pago |
{{ $property->payment_methods ?: 'No registrados' }} |
| Comisión (%) |
{{ $property->commission_percentage ? $property->commission_percentage . '%' : 'No registrada' }} |
| Tipo de Captación |
{{ ucfirst($property->capture_type) }}
|
{{-- Inventario --}}
@if($property->inventories && $property->inventories->count() > 0)
| Item |
Categoría |
Marca |
Modelo |
Cantidad |
Condición |
Incluido en Venta |
Descripción |
@foreach($property->inventories as $item)
| {{ $item->item_name }} |
{{ $item->category ?: '-' }} |
{{ $item->brand ?: '-' }} |
{{ $item->model ?: '-' }} |
{{ $item->quantity }} |
{{ ucfirst($item->condition) }} |
@if($item->included_in_sale)
Sí
@else
No
@endif
|
{{ $item->description ?: '-' }} |
@endforeach
@else
No hay inventario registrado para esta propiedad.
@endif
@if($property->furnished_status)
Estado de Mobiliario: {{ ucfirst($property->furnished_status) }}
@endif
@if($property->repair_details)
Detalles de Reparación:
{{ $property->repair_details }}
@endif
@if($property->inventory_details)
Detalles de Inventario:
{{ $property->inventory_details }}
@endif
{{-- Fotos y Videos --}}
{{-- Ubicación en Mapa --}}
@if($property->latitude && $property->longitude)
@if($property->map_address)
Dirección: {{ $property->map_address }}
@endif
@else
No se ha registrado la ubicación en el mapa para esta propiedad.
@endif
{{-- Documentos --}}
@if($property->documents && $property->documents->count() > 0)
| Tipo de Documento |
Nombre |
Tamaño |
Fecha |
Acciones |
@foreach($property->documents as $document)
| {{ ucfirst(str_replace('_', ' ', $document->document_type)) }} |
{{ $document->file_name }} |
{{ number_format($document->file_size / 1024, 2) }} KB |
{{ $document->document_date ? $document->document_date->format('d/m/Y') : '-' }} |
@if($document->file_path)
Descargar
@endif
|
@endforeach
@else
No hay documentos registrados para esta propiedad.
@endif