@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'); @endphp @for ($i = 1; $i <= session()->get('hotelSearch')['room']; $i++) Room Details ({{ $i }}) {{-- --}} @csrf Mr Mrs Ms @if (session()->get('hotelSearch')['child_' . $i] != 0) Child Details ({{ $i }}) Mstr Miss @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