@if (isset($category)) @section('metaTitle', $category->getMetaTags()['title']) @section('metaDescription', $category->getMetaTags()['description']) @section('metaKeywords', $category->getMetaTags()['keywords']) @endif @extends('frontend.layouts.applayout') @section('main-content')
{{--
--}} {{-- No of products: {{ count($products) }} --}}
{{-- filter here --}}
@if ($products->isEmpty())
No products available.
@else @foreach ($products as $product) @endforeach @endif
{{ $products->appends(request()->query())->links() }}
@endsection