@extends('layouts.front') @section('title', 'Tour Destinations - ToursTravel Kenya') @section('page') @include('partials.navbar')

Discover Kenya's Wonders

From the wild savannah of Maasai Mara to the pristine beaches of Diani, explore our handpicked destinations that showcase Kenya's natural beauty.

@if(request('search')) Results for "{{ request('search') }}" @else All Destinations @endif

@if($destinations->count() > 0) Showing {{ $destinations->count() }} amazing Kenyan destinations @else No destinations found matching your criteria @endif

@if($destinations->count() > 0)
@foreach ($destinations as $destination)
{{ $destination->title }} {{ $destination->category->name ?? 'Safari' }}
{{ $destination->title }} {{ $destination->duration ?? '7 Days' }}

{{ $destination->title }}

{{ Str::limit($destination->description, 120) }}

@endforeach
{{ $destinations->appends(request()->query())->links('pagination::bootstrap-4') }}
@else

No Destinations Found

We couldn't find any destinations matching your search criteria. Try adjusting your filters.

View All Destinations
@endif
Explore by Type

Popular Categories

Wildlife Safaris
12 Tours
Beach Escapes
8 Tours
Mountain Treks
6 Tours
Cultural Tours
10 Tours
@include('partials.footer') @push('scripts') @endpush @endsection