@extends('ecommerce::frontend.layout.main') @section('title') {{ $ecommerce_setting->site_title ?? '' }} @endsection @section('description') @endsection @section('content')
@foreach($categories as $key=>$category)
@php $cats = DB::table('categories')->where('is_active', 1)->where('parent_id', $category->id)->get(); @endphp @foreach($cats as $cat) @endforeach @if(count($cats) < 1) @endif
@endforeach
@endsection @section('script') @endsection