@extends('front.layouts.app') @section('content')

Price

- @if(request()->has('cat')) @endif @if(request()->has('brand_id')) @endif

Categories

Brands

@foreach($brands as $brand) {{ $brand->name }} @endforeach
@if(sizeof($products)>0)

Showing {{ $products->firstItem() }} –{{ $products->lastItem() }} of {{ $products->total() }} results

@endif
@if(sizeof($products)==0)
No Products!
@endif @foreach($products as $product)

{{$product->product_name}}

${{$product->price}}

@endforeach {!! view('front.pages.paging',['items'=>$products])->render() !!}
@endsection @push('js')