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

Hotel search result

{{--

Destination

Where are you going?

Check In date

Thursday

Check Out date

Thursday
--}}
@csrf
{{-- here --}} @php $destincation = explode("_",request()->get('locationhidden')); @endphp

Destination

Where are you going?

Check In date

{{-- Thursday --}}

Check Out date

{{-- Thursday --}}

Search Result

Filter by price
Filter by hotel star
@php $hotelObj = new \App\Http\Controllers\Frontend\HotelController; @endphp @foreach ($result as $hotelList) @php $hotelASJ = $hotelObj->bp_hotel_get_fare($hotelList->Price->OfferedPrice, $hotelList->Price->PublishedPrice, "1"); @endphp
img

{{$hotelList->HotelAddress}}

{{$hotelList->HotelName}}

@for ($i = 1; $i <= $hotelList->StarRating; $i++) @endfor

₹{{$hotelASJ['final_fare']}} Price starts from

@endforeach {{-- --}}
@section('scripts') {{-- Start here for select pax --}} {{-- End here for select pax --}} @endsection @endsection