@extends('frontend.layouts.app') @section('content')

{{ $pageTitle ?? 'Properties' }}

@if (isset($listingType) && $listingType === 'rent') Find verified rental properties with transparent terms and no brokerage @else Browse verified properties with clear pricing and legal documentation @endif

{{ $properties->total() }} properties found

@if ($properties->count() > 0)
@foreach ($properties as $property) @include('frontend.partials.property-card', ['property' => $property]) @endforeach
{{ $properties->links() }}
@else

No properties found

Try adjusting your filters or search criteria

Browse All Properties
@endif

Can't find what you're looking for?

Tell us your requirements and we'll find the perfect property for you.

@endsection