@extends('layouts.front') @section('content')

{{ $property->tipo_inmueble->tipo ?? 'Tipo no asignado' }} - {{ $property->barrio->nombre ?? 'Barrio no asignado' }} {{ 'Código: ' . $property->codigo }}

{{ optional($property->ciudad()->first())->nombre ?? 'No asignada' }}
@if($property->arriendo && $property->venta)
${{ str_replace(',', '.', number_format($property->valor_arriendo + $property->administracion)) }}
${{ str_replace(',', '.', number_format($property->valor_venta)) }}
@elseif ($property->arriendo)
${{ str_replace(',', '.', number_format($property->valor_arriendo + $property->administracion)) }}
@elseif ($property->venta)
${{ str_replace(',', '.', number_format($property->valor_venta)) }}
@endif
@php $fotos = $property->fotos->pluck('foto')->toArray(); @endphp
@if(!empty($fotos)) @foreach($fotos as $foto) @endforeach @else
Sin fotos
@endif
@if(!empty($fotos)) @foreach($fotos as $foto)
@endforeach @else
Sin fotos
@endif
  • Área {{ $property->area_construida }} m²
  • Habitaciones {{ (int) ($property->no_alcobas ?? 0)}}
  • Baños {{ (int) ($property->no_banos ?? 0)}}
  • Parqueadero {{ (int) ($property->garajes ?? 0)}}
  • @if($property->administracion !== null && $property->administracion != "0")
  • Vlr Admon ${{ str_replace(',', '.', number_format($property->administracion)) }}
  • @else
  • Vlr Admon No aplica
  • @endif

Detalles

  • Estrato: {{ $property->estrato == 10 ? 'Comercial' : $property->estrato }}
  • @if($property->piso)
  • Piso: {{ $property->piso }}
  • @endif @if($property->ubicacion && $property->ubicacion != "-1")
  • Ubicación: {{ ubicacion($property->ubicacion) }}
  • @endif @if($property->acceso && $property->acceso != "-1")
  • Tipo Acceso: {{ acceso($property->acceso) }}
  • @endif @if($property->no_alcobas && $property->no_alcobas != "0")
  • Alcobas: {{ $property->no_alcobas }}
  • @endif @if($property->no_closets && $property->no_closets != "0")
  • Closets: {{ $property->no_closets }}
  • @endif @if($property->no_banos && $property->no_banos != "0")
  • Baños: {{ $property->no_banos }}
  • @endif @if($property->tipo_cocina && $property->tipo_cocina != "0" && $property->tipo_cocina != "No tiene")
  • Cocina: {{ $property->tipo_cocina }}
  • @endif @if($property->garajes && $property->garajes != "0" && $property->garajes != null)
  • Parqueadero: {{ $property->garajes }}
  • @endif @if($property->no_bodega && $property->no_bodega != "0")
  • No. Bodegas: {{ $property->no_bodega }}
  • @endif @if($property->no_oficina && $property->no_oficina != "0")
  • No. Oficinas: {{ $property->no_oficina }}
  • @endif @if($property->no_salon && $property->no_salon != "0" )
  • No. Salones: {{ $property->no_salon }}
  • @endif @if ($property->unidad && $property->unidad != "0" && $property->unidad != null)
  • Piso: {{ $property->unidad }}
  • @endif

Características

    @if($property->parq_moto == "1")
  • Parq. Moto
  • @endif @if($property->parq_comunal == "1")
  • Parq. Comunal
  • @endif @if($property->sala_comedor == "1")
  • Sala Comedor
  • @endif @if($property->alcoba_servicio == "1")
  • Alcoba Servicio
  • @endif @if($property->hall == "1")
  • Hall TV
  • @endif @if($property->estudio == "1")
  • Estudio
  • @endif @if($property->patio == "1")
  • Patio
  • @endif @if($property->mirador == "1")
  • Mirador
  • @endif @if($property->balcon == "1")
  • Balcón
  • @endif @if($property->zona_ropas == "1")
  • Zona de Ropa
  • @endif @if($property->terraza == "1")
  • Terraza
  • @endif @if($property->salon_n == "1")
  • Salón
  • @endif @if($property->bodega == "1")
  • Bodega
  • @endif @if($property->oficina == "1")
  • Oficina
  • @endif @if($property->lobby == "1")
  • Lobby
  • @endif @if($property->ascensor == "1")
  • Ascensor
  • @endif @if($property->vigilancia == "1")
  • Celaduría
  • @endif @if($property->juegos == "1")
  • Juegos
  • @endif @if($property->salon_social == "1")
  • Salón Social
  • @endif @if($property->gimnasio == "1")
  • Gimnasio
  • @endif @if($property->piscina == "1")
  • Piscina
  • @endif @if($property->sauna == "1")
  • Sauna
  • @endif @if($property->turco == "1")
  • Turco
  • @endif @if($property->cancha == "1")
  • Cancha
  • @endif @if($property->bbq == "1")
  • BBQ
  • @endif @if($property->conjunto_cerrado == "1")
  • Conjunto Cerrado
  • @endif @if($property->edificio == "1")
  • Edificio
  • @endif @if($property->calentador == "1")
  • Calentador
  • @endif @if($property->aire_acondicionado == "1")
  • Aire Acondicionado
  • @endif

Video

@if($similarProperties->isNotEmpty())

Inmuebles Similares

@endif
@endsection @push('scripts') @endpush