@extends('layouts.frontend') @section('content')

Room boking

{{--

Guest Details

--}} @php $hotelObj = new \App\Http\Controllers\frontend\HotelController(); $hotelASJ = $hotelObj->bp_hotel_get_fare($fareDetail[0]->Price->OfferedPrice, $fareDetail[0]->Price->PublishedPrice, '1'); @endphp
@for ($i = 1; $i <= session()->get('hotelSearch')['room']; $i++)

Room Details ({{ $i }})

{{-- --}} @csrf
@if (session()->get('hotelSearch')['child_' . $i] != 0)
Child Details ({{ $i }})
@endif
@endfor
@if($customerWalletBalance >= $hotelASJ['final_fare'])
@else @endif

Fare Detail

  • Base Fare ₹{{ $fareDetail[0]->Price->RoomPrice }}
  • Tax (+) ₹{{ $hotelASJ['final_fare'] - $fareDetail[0]->Price->RoomPrice }}
Total Fare ₹{{ $hotelASJ['final_fare'] }}
@endsection