@extends('layout.app')
@section('title', $page->title)
@section('description', $page->description)
@section('body')
@include('partials.navbar')
@if($properties != null)
@if(count($properties) > 4)
@foreach($properties as $property)
@if(is_array($property))
@include('partials.propertyBox.propertyBox')
@endif
@endforeach
@else
Você ainda não possui favoritos
@endif
@else
Você ainda não possui favoritos
@endif
@include('partials.testimonies')
@include('partials.brokers')
@endsection