@extends('layouts.front.app')
@section('og')
@endsection
@section('content')
@include('layouts.front.home-slider')
@if($cat1->products->isNotEmpty())
{{ $cat1->name }}
@include('front.products.product-list', ['products' => $cat1->products->where('status', 1)])
@endif
@if($cat2->products->isNotEmpty())
{{ $cat2->name }}
@include('front.products.product-list', ['products' => $cat2->products->where('status', 1)])
@endif
@include('mailchimp::mailchimp')
@endsection