@if($rows->count())

@if($rows->total() > 1) {{ __(":count hotels found",['count'=>$rows->total()]) }} @else {{ __(":count hotel found",['count'=>$rows->total()]) }} @endif

{{ __("Showing :from - :to of :total Hotels",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }}
@foreach($rows as $row)
@include('Hotel::frontend.layouts.search.loop-list')
@endforeach
{{$rows->appends(array_merge(request()->query(),['_ajax'=>1]))->links()}}
@else

{{__("We couldn't find any hotels.")}}

{{__("Try changing your filter criteria")}}

@endif