@extends('base') @section('title', 'Tous les biens') @section('content')

@yield('title')

Ajouter un bien
@foreach ($properties as $property) @endforeach
Titre Surface Prix Ville Actions
{{ $property->title }} {{ $property->surface }} m² {{ $property->getFinalPrice() }} € {{ $property->city }} @if($property->house) Éditer
@csrf @method('DELETE')
@endif @if($property->apartment) Éditer
@csrf @method('DELETE')
@endif @if($property->land) Éditer
@csrf @method('DELETE')
@endif
{{ $properties->links() }}
@endsection