@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'); $room = session()->get('hotelSearch')['room']; @endphp
@for ($i = 1; $i <= $room; $i++) @php $adult = session()->get('hotelSearch')['adult_' . $i]; $child = session()->get('hotelSearch')['child_' . $i]; @endphp

Room Details ({{ $i }})

Guest Detail
{{-- --}} @csrf @for ($a = 0; $a < $adult; $a++)
Adult ({{ $a+1 }})
@endfor @if($child > 0) @for ($c = 0; $c < $child; $c++)
Child ({{ $c+1 }})
@endfor @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