@extends('layouts.app') @section('title', 'Search Results | Kevron Suites and Apartments') @section('content')
Search results

Search Results for: "{{ $query }}"

Showing results found across our luxury en-suite apartments and Lagos travel city guides.

@if($apartments->count() == 0 && $posts->count() == 0)

No results matched your query

Try searching for keywords like "1 Bedroom", "Luxury", "Airport", or explore our listing.

@else @if($apartments->count() > 0)

Matching Suites

@foreach($apartments as $apartment)
{{ $apartment->name }} ₦{{ number_format($apartment->base_price_nightly) }} / Night • {{ $apartment->bedrooms_count }} Bed • {{ $apartment->capacity_adults }} Guests
Book stay
@endforeach
@endif @if($posts->count() > 0)

Matching Blog Articles

@foreach($posts as $post)
{{ $post->title }} {{ $post->summary }}
Read post
@endforeach
@endif @endif
@endsection