@extends('layouts.frontend') @section('content') Room boking Home Hotel Hotel details Booking {{-- 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 }}) Mr Mrs Ms @endfor @if($child > 0) @for ($c = 0; $c < $child; $c++) Child ({{ $c+1 }}) Mstr Miss @endfor @endif @endfor I Accept the Terms & Conditions and Privacy Policies with this booking. @if ($customerWalletBalance >= $hotelASJ['final_fare']) Wallet Pay ({{ $customerWalletBalance }}) @else Wallet Pay ({{ $customerWalletBalance }}) @endif Submit Fare Detail Base Fare ₹{{ $fareDetail[0]->Price->RoomPrice }} Tax (+) ₹{{ $hotelASJ['final_fare'] - $fareDetail[0]->Price->RoomPrice }} Total Fare ₹{{ $hotelASJ['final_fare'] }} @endsection