@extends('layouts.vertical', ['title' => 'Properties']) @section('content')

Properties

@forelse($properties as $property) @empty @endforelse
# Ref ID Type Location Beds/Baths Area Status Actions
{{ $property->id }} {{ $property->ref_id }} @if($property->is_featured) Featured @endif {{ $property->propertyType->name ?? 'N/A' }} {{ $property->city->name ?? 'N/A' }}, {{ $property->country->name ?? 'N/A' }} {{ $property->beds ?? 0 }}/{{ $property->baths ?? 0 }} {{ $property->area_built ?? 0 }}m² @if($property->is_published) Published @else Draft @endif @if($property->is_active) Active @endif
@csrf @method('DELETE')

No properties found

Add Your First Property
@if($properties->hasPages())
{{ $properties->links() }}
@endif
@endsection