@extends('layouts.default') @section('content') Products List Products Back Search Search Categories @foreach (\App\Models\Category::with('products')->get() as $category) {{ $category->name }} ({{ sizeof($category->products) }}) @endforeach Filter Menu Sort By : Latest Latest Product Low - High Price High - Low Price A - Z Order Z - A Order @foreach ($products as $key => $item) @endforeach @endsection @push('script') @endpush