@foreach($featuredListings as $listing)
@include('classified::partials.listing-card', ['listing' => $listing])
@endforeach
@endif
@if($hasLocation)
@if($nearbyListings->isNotEmpty())
@foreach($nearbyListings as $listing)
@include('classified::partials.listing-card', ['listing' => $listing])
@endforeach
@else
No Listings Found Nearby
We couldn't find active listings near {{ $locationName ?? 'your selected location' }}. Try exploring all classified listings.
Browse All Listings
@endif
@endif
@if($listings->count())
@foreach($listings as $listing)
@include('classified::partials.listing-card', ['listing' => $listing])
@endforeach
@else
@endif
@push('scripts')
@endpush