@extends('user.components.layout') @push('css') @endpush @section('main') @include('user.components.book_opts')

{{ $hotel['hotel_name'] }}

{{ $hotel['hotel_address'] }}
@php $desc = json_decode($hotel['hotel_description'], true); @endphp

Description

Hotel was opened in {{ $desc['hotel_opened'] }} @isset($desc['hotel_renovated']) and renovated in {{ $desc['hotel_renovated'] }} @endisset

{{ $desc['hotel_description'] }}

Services Offered By Hotel
    @foreach (json_decode($hotel['hotel_amenities'], true)['General'] as $service)
  • {{ $service['type'] }}
  • @endforeach

Rooms

@foreach (json_decode($hotel['hotel_room'], true) as $room)
{{ $room['room_type'] }}({{$room['room_bed'].($room['room_bed']>1?" beds":" bed")}} in roon)
₹{{$room['roomactualprice']}}₹{{$room['roomofferprice']}} Book
{{--
Room Facilities
    @foreach (json_decode($room['failities'], true) as $p)
  • {{ $p['facilities'] }}
  • @endforeach
Room Policies
    @foreach (json_decode($room['policies'], true) as $p)
  • {{ $p['poilices'] }}
  • @endforeach
--}}
@endforeach

Policies

Hotel Policies
@foreach (json_decode($hotel['hotel_policies'], true) as $key => $value) @if (gettype($value) != 'array') @endif @endforeach
{{ $key }} {{ $value }}
Cancellation Policies
@foreach (json_decode($hotel['hotel_policies'], true)['cancellation'] as $key => $value) @endforeach
{{ $key }} {{ $value }}
{{--

₹4500

₹2300Per Person

*Excluding applicable taxes

--}}
Raise A Query

Having anything in mind, feel free to write us. We are here for you. We will connect you back as soon as possible

@endsection