@extends('layouts.front') @section('content')
@include('includes.catalog')
@if(count($products) > 0) @include('includes.filter')
@foreach($products as $prod) @include('includes.product.product') @endforeach
@if(isset($min) || isset($max))
{!! $products->appends(['min' => $min, 'max' => $max])->links() !!}
@elseif(!empty($sort))
{!! $products->appends(['sort' => $sort])->links() !!}
@else
{!! $products->links() !!}
@endif
@else

{{ $langg->lang60 }}

@endif
@endsection @section('scripts') @endsection