@include('templates.parts.head')
@include('templates.parts.header')
{{ $category }}
{{--
Filter
By Product
All Brand
By Brand
All Brand
Armani Casa
Martha Stewart Living
Williams Sonoma
--}}
@if ( count($products) !== 0 ) @foreach( $products as $index => $product ) @if( $index % 4 == 3 )
{{ $product->name }}
{{ $product->subtitle }}
@else
{{ $product->name }}
{{ $product->subtitle }}
@endif @endforeach @else
There is no product for this category..
@endif
@if ( count($products) !== 0 )
Loading More...
@endif
@include('templates.parts.newsletter') @include('templates.parts.footer')