@extends('front.themes.shared.layout') @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

{{ _("No Product Found.") }}

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