@extends('layouts.app') @section('title', 'Detalhes do Imóvel') @section('content')

Detalhes do Imóvel #{{ $imovel->id }}

Informações completas sobre o imóvel selecionado

Voltar à Consulta
Informações Gerais
{{ $imovel->tipo == 'terreno' ? 'Terreno' : ($imovel->tipo == 'apartamento' ? 'Apartamento' : ($imovel->tipo == 'imovel_urbano' ? 'Imóvel Urbano' : ($imovel->tipo == 'sala_comercial' ? 'Sala Comercial' : 'Galpão'))) }}
@if ($imovel->valor_total_imovel) R$ {{ number_format($imovel->valor_total_imovel, 2, ',', '.') }} @else Não informado @endif
@if ($imovel->tipo == 'terreno') {{ number_format($imovel->area_total, 2, ',', '.') }} m² @else {{ $imovel->area_construida ? number_format($imovel->area_construida, 2, ',', '.') : '0,00' }} m² @endif
{{ $imovel->created_at->format('d/m/Y H:i') }}
Localização
{{ $imovel->endereco }} @if($imovel->numero), {{ $imovel->numero }}@endif
{{ $imovel->bairro->nome ?? 'Não informado' }}
{{ $imovel->zona->nome ?? 'Não informado' }}
@if($imovel->viaEspecifica)
{{ $imovel->viaEspecifica->nome }}
@endif
@if (!empty($imovel->latitude) && !empty($imovel->longitude))
@endif
@if ($imovel->tipo == 'terreno')
Características do Terreno
{{ number_format($imovel->area_total, 2, ',', '.') }} m²
@if($imovel->frente)
{{ number_format($imovel->frente, 2, ',', '.') }} m
@endif @if($imovel->fundos)
{{ number_format($imovel->fundos, 2, ',', '.') }} m
@endif
@else
Características da Construção
@if($imovel->area_construida)
{{ number_format($imovel->area_construida, 2, ',', '.') }} m²
@endif @if($imovel->area_terreno)
{{ number_format($imovel->area_terreno, 2, ',', '.') }} m²
@endif
@endif
Status
@if($imovel->situacao)
{{ ucfirst($imovel->situacao) }}
@endif @if($imovel->fator_fundamentacao)
{{ $imovel->fator_fundamentacao }}
@endif
Amostra
@if ($imovel->preco_venda_amostra && $imovel->preco_venda_amostra > 0) R$ {{ number_format($imovel->preco_venda_amostra, 2, ',', '.') }} @else Não disponível @endif
@if ($imovel->preco_venda_amostra && $imovel->preco_venda_amostra > 0)
@if(isset($itemNoCarrinho) && $itemNoCarrinho) @else @endif
@else
@endif
@if($imovel->fotos && $imovel->fotos->count() > 0)
Fotos do Imóvel
@foreach($imovel->fotos as $foto) @endforeach
@endif
Ver Carrinho 0
@endsection @push('styles') @endpush @push('scripts') @endpush