@extends('layouts.app') @section('title', __('pages.meta.product-category-1.title')) @section('meta_description', __('pages.meta.product-category-1.description')) @section('meta_keywords', __('pages.meta.product-category-1.keywords')) @section('meta_author', __('pages.meta.author')) @php $data = $productCategory1Data ?? []; $bannerSlides = data_get($data, 'banner.slides', []); $breadcrumb = data_get($data, 'breadcrumb', []); $description = data_get($data, 'description', []); $clientReview = data_get($data, 'clientReview', []); $popularDestinations = data_get($data, 'popularDestinations', []); $alsoGreatDestinations = data_get($data, 'alsoGreatDestinations', []); $trends = data_get($data, 'trends', []); $trendGroups = data_get($trends, 'groups', []); $about = data_get($data, 'about', []); $reviews = data_get($data, 'reviews', []); $floatingActions = data_get($data, 'floatingActions', []); $mobileNavData = data_get($data, 'mobileNavData', []); @endphp @section('content')
@include('pages.home.shared.header')
@foreach ($bannerSlides as $slide)
{{ $slide['alt'] ?? '' }}
@endforeach

{{ $description['title'] ?? '' }}

{!! $description['text'] ?? '' !!}

{{ $clientReview['title'] ?? '' }}

{{ $clientReview['text'] ?? '' }}

{{ $clientReview['author'] ?? '' }}
{!! $clientReview['tourType'] ?? '' !!}

{{ data_get($popularDestinations, 'title', '') }}

@foreach (data_get($popularDestinations, 'items', []) as $item) @endforeach

{{ data_get($alsoGreatDestinations, 'title', '') }}

@foreach (data_get($alsoGreatDestinations, 'lists', []) as $list)
    @foreach ($list as $entry) @php $entryText = is_array($entry) ? ($entry['text'] ?? '') : $entry; $entryLink = is_array($entry) ? ($entry['link'] ?? null) : null; @endphp
  • @if ($entryLink) {{ $entryText }} @else {{ $entryText }} @endif
  • @endforeach
@endforeach

{{ $trends['title'] ?? '' }}

{!! $trends['description'] ?? '' !!}

{{ data_get($trendGroups, '0.subtitle', '') }}

{{ data_get($trendGroups, '1.subtitle', '') }}

{{ data_get($trendGroups, '2.subtitle', '') }}

{!! $trends['disclaimer'] ?? '' !!}

{!! $about['content'] ?? '' !!}
@include('pages.home.shared.section-benefits', ['sectionBenefitsData' => $sectionBenefits])
@include('pages.home.shared.trustpilot-section', ['trustpilotData' => $reviews])
@include('pages.home.shared.footer') @include('pages.home.shared.popup-booking')
@foreach ($floatingActions as $action) {{ $action['alt'] ?? '' }} @if (!empty($action['badge'])) {{ $action['badge'] }} @endif @if (!empty($action['text'])) {{ $action['text'] }} @endif @endforeach
@endsection @push('scripts') @endpush