@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
@else
@endif