@extends('Frontend.Layouts.app') @section('page_title', $title ?? 'Moonlit Hotel') @section('content') @include('Frontend.Header.header') @php $class = "is__home__one"; $attr = ""; @endphp @include('Frontend.Partials.advance__search',compact('class','attr'))
@if($phone)
{{ $phone }}

Rezervasyon Hattı

@endif
Hoş Geldiniz

{{ $paragraphs->first() ?? $title }}

@foreach($paragraphs->slice(1, 2) as $p)

{{ $p }}

@endforeach Rezervasyon Yap
@php $top = "Facilities"; $title = "Hotel Facilities"; @endphp @include('Frontend.Components.sec-top',compact('top','title'))
@php $class = 'no-border is__home radius-6'; $icon = 'assets/images/icon/bed.svg'; $link = '#'; $title = 'Rooms and Suites'; $desc = 'Varied types of rooms, from standard to luxury suites, equipped with essentials like beds.'; @endphp @include('Frontend.Components.card', compact('class', 'icon', 'link', 'title', 'desc'))
@php $class = 'no-border is__home radius-6'; $icon = 'assets/images/icon/security.svg'; $link = '#'; $title = '24-Hour Security'; $desc = 'On-site security personnel and best surveillance. from standard to luxury suites,Secure storage for valuables.'; @endphp @include('Frontend.Components.card', compact('class', 'icon', 'link', 'title', 'desc'))
@php $class = 'no-border is__home radius-6'; $icon = 'assets/images/icon/gym.svg'; $link = '#'; $title = 'Fitness Center'; $desc = 'Equipped with exercise machines and weights.Offering massages, facials, and other treatments.'; @endphp @include('Frontend.Components.card', compact('class', 'icon', 'link', 'title', 'desc'))
@php $class = 'no-border is__home radius-6'; $icon = 'assets/images/icon/swimming-pool.svg'; $link = '#'; $title = 'Swimming Pool'; $desc = 'Indoor or outdoor pools for leisure or exercise.Offering massages, facials, and other treatments.'; @endphp @include('Frontend.Components.card', compact('class', 'icon', 'link', 'title', 'desc'))
@if($rooms->count() > 0)
Odalar

Odalarımız

{{ $site->name }}'da konforu ve zarafeti bir arada sunan, her misafire özel bir konaklama deneyimi sağlayan odalarımızı keşfedin.

@foreach($rooms as $room) @php $roomImg = $room->images->first(); $roomT = $room->translations->first(); @endphp
{{ $roomT->title }}
{{ $roomT->title }}
@endforeach
@endif
Testimonials

What Our Client Say

Choosing Bokinn was one of the best decisions we've ever made. They have proven to be a reliable and innovative partner, always ready to tackle new challenges with and expertise.Their commitment to and delivering tailored.
Sarah Martinez
COO of Apex Solutions
Choosing Bokinn was one of the best decisions we've ever made. They have proven to be a reliable and innovative partner, always ready to tackle new challenges with and expertise.Their commitment to and delivering tailored.
Sarah Martinez
COO of Apex Solutions
Watch Now * Watch Now * Watch Full Video *
@if($offers->count() > 0)
@php $top = "Fırsatlar"; $title = "Güncel Fırsatlarımız"; @endphp @include('Frontend.Components.sec-top',compact('top','title'))
@foreach($offers as $offer) @php $offerImg = $offer->images->first(); $offerT = $offer->translations->first(); @endphp
@if($offerImg){{ $offerT->title }}@endif
{{ $offerT->title }} @if($offerT->paragraphs && count($offerT->paragraphs))

{{ Str::limit($offerT->paragraphs[0], 140) }}

@endif
@endforeach
@endif
@php $top = "Instagram Post"; $title = "Follow on Instagram"; @endphp @include('Frontend.Components.sec-top',compact('top','title'))
@include('Frontend.Footer.footer__common') @endsection