@extends('user.layouts.app') @section('body_class', 'room-booking') @push('styles') @endpush @section('content') {{-- --}}

Room Booking

  Booking Rules

Bookings can only be done by the Members. NO DEPENDENT MEMBER is permitted to book a room directly. Dependent Members can only book room on producing an authority letter or confirmation from the Member. Members can book rooms for their guests as temporary members.

  Terms & Conditions

The club rooms are intended for reservation by Members for short periods not exceeding 10 days, but occupation may be extended on request, by the Management.

No interviews, press conference or Party may be held by the residents of the club premises without prior permission of the management.

Room residents are requested to adhere to the Dress Code in all club facilities.

  • Check-in-time:02:00 PM
  • Check-out-time:12:00 Noon

Reciprocal / affiliated Club members are not allowed to book room for their guests separately unless the reciprocal member is physically staying during the span.

Reciprocal Members are required to produce valid photo membership card on their arrival.

Any statutory taxes shall be payable as applicable.

Residents are requested to see their children do not cause any inconvenience to other residents or members.

Residents are requested to ensure entertainment of guests in the Rooms do not cause any inconvenience to other residents or members. No get together / entertainment in rooms is permitted.

Other than room occupants, visitors are not allowed to be in the rooms after 11:00 PM.

Rights of Admission is strictly reserved.

  Cancellation Rule

15 days - 72 hours: 25% of one night accommodation Charge

15 days - 72 hours: 25% of one night accommodation Charge

15 days - 72 hours: 25% of one night accommodation Charge

@if(!isset($notice))

No notices available

@else @endif

Room Booking App

Room booking app allows members to easily check availability and reserve rooms, all through a simple and intuitive interface, it ensures a seamless experience for members.

Help & Support

For technical support, please contact the IT-Systems at app@tollygungeclub.org. For functional assistance, reach out to the Reception Desk at rooms@tollygungeclub.org.

Version: Beta 1.0.0

Designed & Developed by Tolly System Department

New Booking

Booking for
{{-- --}}
{{-- --}}
Room Type
1
@if(!$bookingHistory) {{-- -- no booking found -- --}}

No Booking Found

You don't have any upcoming bookings. Book now and stay ahead!

@else {{-- -- booking histiry table -- --}}

Your Booking


@foreach($bookingHistory as $booking) {{-- --}} @endforeach
Booking No. Booking Name Check In Date Check Out Date Room Type Booking Amount Action
{{$booking['BookingId']}} {{auth()->user()->name}}{{ \Carbon\Carbon::parse($booking['CheckInDate'])->format('Y-m-d') }} {{ \Carbon\Carbon::parse($booking['CheckOutDate'])->format('Y-m-d') }}{{ \Carbon\Carbon::parse($booking['CheckInDate'])->format('d-m-Y') }} {{ \Carbon\Carbon::parse($booking['CheckOutDate'])->format('d-m-Y') }} {{$booking['RoomType']}} ₹ {{$booking['TotalRoomAmount']}}
View @if(\Carbon\Carbon::parse($booking['CheckInDate'])->format('Y-m-d') > \Carbon\Carbon::now()->format('Y-m-d')) Cancel @endif
@endif
@if(!empty($upcomingBookings) && count($upcomingBookings) == 0) {{-- -- no booking found -- --}}

No Booking Found

You don't have any upcoming bookings. Book now and stay ahead!

@else {{-- -- booking histiry table -- --}}

Your Booking


@if(!empty($upcomingBookings) && count($upcomingBookings) > 0) @foreach($upcomingBookings as $booking) @php $roomTypeName = \App\Models\RoomType::where('room_code', $booking['RoomType'])->first(); @endphp @endforeach @else @endif
Booking No. Booking Name Check In Date Check Out Date Room Type Booking Amount Action
{{$booking['BookingId']}} {{auth()->user()->name}} {{ \Carbon\Carbon::parse($booking['CheckInDate'])->format('d-m-Y') }} {{ \Carbon\Carbon::parse($booking['CheckOutDate'])->format('d-m-Y') }} {{ $roomTypeName->name }} ₹ {{$booking['TotalRoomAmount']}}
View @if(\Carbon\Carbon::parse($booking['CheckInDate'])->format('Y-m-d') > \Carbon\Carbon::now()->format('Y-m-d')) Cancel @endif
No upcoming bookings
@endif
@if(!$bookingHistory) {{-- -- no booking found -- --}}

No Booking Found

You don't have any upcoming bookings. Book now and stay ahead!

@else {{-- -- booking histiry table -- --}}

Your Booking


@if(!empty($previousBookings) && count($previousBookings) > 0) @foreach($previousBookings as $booking) @php $roomTypeName = \App\Models\RoomType::where('room_code', $booking['RoomType'])->first(); @endphp @endforeach @else @endif
Booking No. Booking Name Check In Date Check Out Date Room Type Booking Amount Action
{{$booking['BookingId']}} {{auth()->user()->name}} {{ \Carbon\Carbon::parse($booking['CheckInDate'])->format('d-m-Y') }} {{ \Carbon\Carbon::parse($booking['CheckOutDate'])->format('d-m-Y') }} {{ $roomTypeName->name ?? '' }} ₹ {{$booking['TotalRoomAmount']}}
View @if(\Carbon\Carbon::parse($booking['CheckInDate'])->format('Y-m-d') > \Carbon\Carbon::now()->format('Y-m-d')) Cancel @endif
No previous bookings
@endif
@if($lastBooking)

Last Booking

  • Booking No: {{$lastBooking['BookingId']}}
  • Check In Date: {{-- {{ \Carbon\Carbon::parse($booking['CheckInDate'])->format('Y-m-d') }} --}} {{ \Carbon\Carbon::parse($lastBooking['CheckInDate'])->format('d-m-Y') }}
  • Check Out Date: {{-- {{ \Carbon\Carbon::parse($booking['CheckInDate'])->format('Y-m-d') }} --}} {{ \Carbon\Carbon::parse($lastBooking['CheckOutDate'])->format('d-m-Y') }}
  • Status: {{$lastBooking['IsCancelled'] == true ? 'Canceled' : 'Successful'}}
@else {{-- -- no booking found -- --}}

No Booking Found

You don't have any bookings. Book now and stay ahead!

@endif

Cancel Booking


@if(!empty($cancelBookingHistory) && count($cancelBookingHistory) > 0) @foreach($cancelBookingHistory as $booking) {{-- --}} @php $roomTypeName = \App\Models\RoomType::where('room_code', $booking['RoomType'])->first(); @endphp @endforeach @else @endif
Booking No. Booking Name Check In Date Check Out Date Room Type Booking Amount Action
{{$booking['BookingId']}} {{auth()->user()->name}}{{ \Carbon\Carbon::parse($booking['CheckInDate'])->format('Y-m-d') }} {{ \Carbon\Carbon::parse($booking['CheckOutDate'])->format('Y-m-d') }}{{ \Carbon\Carbon::parse($booking['CheckInDate'])->format('d-m-Y') }} {{ \Carbon\Carbon::parse($booking['CheckOutDate'])->format('d-m-Y') }} {{ $roomTypeName->name ?? ''}} ₹ {{$booking['TotalRoomAmount']}}
No cancel bookings
{{--
GROUND STAND COTTAGE
  • No. of Room
    1
  • No. of Adults
    1
  • No. of Children
    1
--}}
@endsection @section('footer') @endsection @push('scripts') @endpush