@if($property->monaco) @if($property->district)
{{ translate('quartier') }}
{{ translate('quartier') }} {{ $property->district->getAttr('name') }}
@endif @else @if($property->city)
{{ translate('ville') }}
{{ translate('ville') }} {{ $property->city->name }}
@endif @endif @if($property->rooms)
{{ translate('pieces') }}
@if($property->rooms < 2) {{ ucfirst(translate('piece')) }} @else {{ ucfirst(translate('pieces')) }} @endif {{ $property->rooms }}
@endif @if($property->monaco || $property->dubai) @if($property->total_area)
{{ translate('surface_totale') }}
{{ translate('surface_totale') }} {{ $property->total_area }} m²
@endif @else @if($property->display_living_area && $property->living_area)
{{ translate('surface_habitable') }}
{{ translate('surface_habitable') }} {{ $property->living_area }} m²
@endif @endif @if($property->bedrooms)
{{ translate('chambres') }}
@if($property->rooms < 2) {{ ucfirst(translate('chambre')) }} @else {{ ucfirst(translate('chambres')) }} @endif {{ $property->bedrooms }}
@endif