@extends('site.templates.voyage.layout') @section('content')

{{ isset($searchTerm) && $searchTerm !== '' ? '"' . $searchTerm . '" için sonuçlar' : 'Turlarımız' }}

@include('site.templates.voyage.partials.search-band', [ 'tourTypes' => $tourTypes, 'compact' => true, 'popular' => [], ])
@forelse($groups as $group)

{{ $group['type']->name }}

Tümünü Gör
@foreach($group['tours'] as $tour) @include('site.templates.voyage.partials.tour-card', [ 'tour' => $tour, 'type' => $group['type'], 'variant' => 'vertical', ]) @endforeach
@empty

Sonuç bulunamadı

Aradığınız kriterlere uygun tur bulunamadı. Farklı bir arama deneyin ya da bizimle iletişime geçin.

Bize Ulaşın
@endforelse @endsection