@php
$hotelObj = new \App\Http\Controllers\Frontend\HotelController;
@endphp
@foreach ($roomDetail as $roomInfo)
@php
$hotelASJ = $hotelObj->bp_hotel_get_fare($roomInfo->Price->OfferedPrice, $roomInfo->Price->PublishedPrice, "1");
@endphp
@if(!empty($roomCombinationsArr) && in_array($roomInfo->RoomIndex, $roomCombinationsArr))
@php
$rand = rand(0,$imageCount-1);
@endphp
@php
$fromDate= strtotime( $roomInfo->CancellationPolicies[0]->FromDate );
$fromDate= date('d-m-Y', $fromDate );
$toDate = strtotime( $roomInfo->CancellationPolicies[0]->ToDate );
$toDate= date('d-m-Y', $toDate );
@endphp
@foreach ($roomInfo->Amenities as $amenities)
- {{$amenities}}
@endforeach
From {{$fromDate}} to {{$toDate}} cancellation charge : {{$roomInfo->CancellationPolicies[0]->Charge}}%
₹{{$hotelASJ['final_fare']}}/ Per night
@endif
@endforeach