@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-grid')
@endforeach
@else
@endif