@extends('layouts.main-app')
@section('title', 'Shop')
@section('content')
@include('layouts.navbar')
@include('layouts.brands')
CATEGORIES
@include('layouts.category')
@include('layouts.shop_filter')
Showing {{ $products->firstItem() }}-{{ $products->lastItem() }} of {{ $products->total() }} Products
Sort By
@foreach ($products as $product)
@include('layouts.product')
@endforeach
@if ($products->onFirstPage())
@else
@endif
@foreach ($products->getUrlRange(1, $products->lastPage()) as $page => $url)
@endforeach
@if ($products->hasMorePages())
@else
@endif
@include('layouts.footer')
@endsection