@extends(get_view('index')) @section('title'){{ translate('search_result') }} - @endsection @section('header') @endsection @section('content')
{{ $products->total() }} {{ translate('results_found') }}

Sırala:

@if ( $products->count() > 0 ) @foreach ($products as $product)
@include(get_view('components.product.single-product'))
@endforeach
{{ $products->links() }}
@else

Ürün bulunamadı.

@endif
@include(get_view('components.search.left-filter'))
@endsection @section('footer') @endsection