@extends('shop/layout') @section('shop')
@if($seller) {{ucfirst($seller->name)}} > @else Our shop > @endif @if($category->ancestors->count()) @foreach( $category->ancestors as $ancestor) {{$ancestor->title}} > @endforeach @endif {{$category->title}}

{{$category->title}}

@include('shop.filters')
{{-- @if(!empty($subCategories))
@foreach($subCategories as $subCategory)

{{$subCategory->title}} - 1

@endforeach
@endif --}}
@include('shop.product-list', ['products' => $products])
@stop