@extends('layouts.app') @section('title', __('pages.meta.product-category-2.title')) @section('meta_description', __('pages.meta.product-category-2.description')) @section('meta_keywords', __('pages.meta.product-category-2.keywords')) @section('meta_author', __('pages.meta.author')) @php $data = $productCategory2Data ?? []; $bannerSlides = data_get($data, 'banner.slides', []); $breadcrumb = data_get($data, 'breadcrumb', []); $description = data_get($data, 'description', []); $cardsLarge = data_get($data, 'experienceCardsLarge', []); $cardsMedium = data_get($data, 'experienceCardsMedium', []); $cardsSmallRow1 = data_get($data, 'experienceCardsSmallRow1', []); $cardsSmallRow2 = data_get($data, 'experienceCardsSmallRow2', []); $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'] ?? '' !!}

@foreach ($cardsLarge as $card) @endforeach
@foreach ($cardsSmallRow1 as $card) @endforeach
@foreach ($cardsSmallRow2 as $card) @endforeach

{!! $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