@extends('v1.enduser.layouts.default') @section('content')

{{ $selectedCat['name'] }}

Other Products

    @foreach($category as $cat) @if($cat['slug']!=app('request')->categorySlug)
  • {{ $cat['name'] }}
  • @endif @endforeach
@if(count($products)>0)
@foreach($products as $product) @include('v1.enduser.product.productListItem') @endforeach
@endif
@endsection