@if($rows->count())

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

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

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

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

{{--{{__("Clear Filters")}}--}}
@endif