@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' => '', 'parentlink' => '', ])
@if ($content->image)
{!! get_image($content->image, 'w-100', 'blog') !!}
@endif
{!! $content->description ?? '' !!}
@if ($packages->isNotEmpty())
LATEST TRIP
@foreach ($packages as $blog) @endforeach
@endif @if ($blogs->isNotEmpty())
LATEST POST
@foreach ($blogs as $blog) @endforeach
@endif @if ($categorys->isNotEmpty())
CATEGORIES
@endif
@endsection