@extends('layouts.frontend.master')
@section('seo')
@include('frontend.global.seo', [
'name' => $content->name ?? '',
'title' => $content->seo_title ?? $content->name,
'description' => $content->seo_description ?? '',
'keyword' => $content->seo_keywords ?? '',
'schema' => $content->seo_schema ?? '',
'seoimage' => $content->image ?? '',
'created_at' => $content->created_at,
'updated_at' => $content->updated_at,
])
@endsection
@section('content')
@include('frontend.global.banner', [
'name' => $content->name,
'banner' => $content->banner ?? null,
'parentname' => 'Destinations',
'parentlink' => '/destinations',
])
@if (!empty($content->image || $content->description))
{!! get_image($content->image, '', 'activity') !!}
{!! $content->description ?? '' !!}
@endif
@if ($subdestinations->isNotEmpty())
@foreach ($subdestinations as $key => $packs)
{!! get_image($packs->image, '', 'slider-act-on') !!}
{{ $key + 1 }}
{{ $packs->name ?? '' }}
{!! stripLetters($packs->description, 355, '...') !!}
@endforeach
@foreach ($subdestinations as $key => $packs)
{!! get_image($packs->image, '', 'slider-act-two') !!}
{{ $packs->name ?? '' }}
@endforeach
@endif
@if ($packages->isNotEmpty())
PACKAGES
@foreach ($packages as $packs)
{!! get_image($packs->image, '', 'pck-main') !!}
@if ($packs->price)
{!! getpackageprice($packs->activity->priceprefix, $packs->price, $packs->activity->priceper) !!}
@endif
@if ($packs->activity->duration || $packs->activity->size || $packs->location)
@if ($packs->activity->duration)
-
{{ $packs->activity->duration ?? '' }}
@endif
@if ($packs->activity->size)
-
Min Pax: {{ $packs->activity->size ?? '' }}
@endif
@if ($packs->location)
-
{{ $packs->location ?? '' }}
@endif
@endif
{{ $packs->name ?? '' }}
{!! stripLetters($packs->description, 95, '...') !!}
@endforeach
@endif
@endsection