@extends('base') @section('title', $property->title) @section('content')
@if (!isset($property->photos[0]))
@else
@endif
@if (!isset($property->photos[1]))
@else
@endif
@if (!isset($property->photos[2]))
@else
@endif
@foreach($property->photos as $index => $photo) @if($index >= 3) @endif @endforeach

@yield('title')

@if ($property->house) Surface Surface de {{ $property->surface }} m² Terrain Terrain de {{ $property->house->land_surface }} m² Pièces {{ $property->rooms }} pièces @endif @if ($property->apartment) Surface Surface de {{ $property->surface }} m² Pièces {{ $property->rooms }} pièce(s) @if ($property->apartment->terrace_or_balcony) Balcon terrasse 1 terrasse ou balcon @endif @endif @if ($property->land) Terrain Terrain de {{ $property->surface }} m² @endif

{{ number_format($property->price, 0, ',', ' ') }} € (hors honoraires)

{{ number_format($property->getFinalPrice(), 0, ',', ' ') }} € (honoraires agence inclus)

{{ $property->description }}

@if ($property->house) @include('infos.house') @endif @if ($property->apartment) @include('infos.apartment') @endif @if ($property->land) @include('infos.land') @endif @if (!$property->land)
@include('infos.climat')
@endif
@include('contact')
Retour à la liste
@endsection