@extends('layouts.public') @section('title', $seoTitle) @section('meta_description', $seoDescription) @push('head') @if ($properties->previousPageUrl()) @endif @if ($properties->nextPageUrl()) @endif @endpush @section('content')
@include('partials.site._breadcrumbs', ['crumbs' => [ ['label' => 'Home', 'url' => route('public.home')], ['label' => $breadcrumbLabel], ]])
{{ $cityName }}

{{ $seoTitle }}

@if ($introContent)
{!! $introContent !!}
@endif
@include('partials.site._results-header', [ 'properties' => $properties, 'sort' => $sort, 'propertyTypes' => $propertyTypes, 'propertyTags' => $propertyTags, 'resultsHeadingTag' => 'h2', ])
@include('partials.site._filter-panel', [ 'propertyTypes' => $propertyTypes, 'propertyTags' => $propertyTags, ])
@include('partials.site._search-results-panel', [ 'properties' => $properties, 'propertyTypes' => $propertyTypes, ])
{{-- This category page's own Landing Page override Footer SEO Content only — never any other page's (see partials.site._footer-seo's own doc comment). Plain text, line breaks preserved. --}} @include('partials.site._footer-seo', ['footerSeoContent' => $footerSeoContent ?? null]) @endsection