@extends('layouts.app') @section('title', __('pages.meta.post-category.title')) @section('meta_description', __('pages.meta.post-category.description')) @section('meta_keywords', __('pages.meta.post-category.keywords')) @section('meta_author', __('pages.meta.author')) @section('content') @php $pageData = $postCategoryData ?? []; $banner = $pageData['banner'] ?? []; $breadcrumb = $pageData['breadcrumb'] ?? []; $description = $pageData['description'] ?? []; $sortOptions = $pageData['sortOptions'] ?? []; $stories = $pageData['stories']['content'] ?? []; $pagination = $pageData['pagination'] ?? []; $about = $pageData['about'] ?? []; $reviews = $pageData['reviews'] ?? []; $floatingActions = $pageData['floatingActions'] ?? []; $mobileNavData = $pageData['mobileNavData'] ?? []; $seeMoreText = __('common.page.see_more'); $sectionBenefits = $sectionBenefits ?? []; @endphp
@include('pages.home.shared.header')

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

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

{!! $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) @php $width = $action['width'] ?? 25; $height = $action['height'] ?? 25; $actionId = $action['id'] ?? ''; @endphp {{ $action['alt'] ?? '' }} @if (!empty($action['badge'])) {{ $action['badge'] }} @endif @if (!empty($action['text'])) {{ $action['text'] }} @endif @endforeach
@endsection @push('scripts') @endpush