@extends('layout.app') @section('title', "Bairro ".$neighborhood->name) @section('description', $neighborhood->short_description) @section('body')
@include('partials.mainHeader')

{{ $neighborhood->name }}

{{ $neighborhood->short_description }}
{!! $neighborhood->description !!}
Tenho interesse neste bairro!
Sem compromisso converse com nosso especialista.
@csrf
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach @if(Session::has('messageError'))
{{Session::get('messageError')}}
@endif @if(Session::has('messageOk'))
{{Session::get('messageOk')}}
@endif

Conheça os nossos imóveis no bairro {{ $neighborhood->name }}

@if($properties != null) @if(count($properties) > 4) @php $property = $properties->first(); $properties->shift(); @endphp @include('partials.propertyBox.propertyBoxHorizontal')
@foreach($properties as $property) @if(is_array($property)) @include('partials.propertyBox.propertyBox') @endif @endforeach
@else

Não foram localizados imóveis neste bairro

@endif
{{ $properties->onEachSide(1)->links() }}
@else

Não foram localizados imóveis neste bairro

@endif
@include('partials.testimonies') @include('partials.brokers') @endsection @section('extra_scripts') @endsection