Files
rohini-web/resources/views/client/rohini/pages/other-destinations-template.blade.php
2025-12-28 12:16:05 +05:45

72 lines
2.3 KiB
PHP

@extends('client.rohini.layouts.app')
@section('content')
@include('client.rohini.pages.partials.breadcrumb')
<!-- other-destination page starts -->
<section class="other-destinations">
<div class="container ">
<h2>{{ $page->short_description }}</h2>
<div class="row other-destinations-content ">
<!--other-destination description-->
<div class="col-lg-6 col-md-12">
<div class="other-destinations_paragraph">
{!! $page->description !!}
</div>
</div>
<div class="col-lg-1"><!--empty column for spacing--></div>
<div class="col-lg-5 col-md-12">
<div class="other-destinations_image">
<img src="{{ $page->image }}" alt="">
</div>
</div>
</div>
@if ($page->children->count() > 0)
@php
$section = $page->children[0];
@endphp
<!-- video description -->
<div class=" other-destinations-video">
<div class="">
<h2>{{ $section->title }}</h2>
</div>
<div class="other-destinations-video_content">
<div class="other-destinations-video-img">
<img src="{{ $section->image }}" alt="">
<div class="other-destinations-video-link">
<a href="{{ $section->link }}" class="video-popup">
<div class="other-destination-video-icon">
<span class="fa fa-play"></span>
<i class="ripple"></i>
</div>
</a>
</div>
</div>
<div class="other-destinations-video_paragraph">
<h3>{{ $section->short_description }}</h3>
{!! $section->description !!}
</div>
</div>
</div>
@endif
</div>
</section>
<!-- other-destination page ends -->
@include('client.rohini.pages.partials.newsletter')
@endsection