@if($rows->count())
@if($rows->total() > 1)
{{ __(":count flights found",['count'=>$rows->total()]) }}
@else
{{ __(":count flight found",['count'=>$rows->total()]) }}
@endif
{{ __("Showing :from - :to of :total flights",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }}
@foreach($rows as $row)
@include('flight::frontend.layouts.search.loop-gird')
@endforeach
@else
{{__("We couldn't find any flights.")}}
{{__("Try changing your filter criteria")}}
{{--
{{__("Clear Filters")}}--}}
@endif