@php $children_menus = \App\Models\Menu\MenuPage::where('menu_page_id', $child_category->id) ->orderBy('position') ->get(); @endphp @if (count($children_menus) > 0) @foreach ($children_menus as $child_category) @include('frontend.layouts.child_menu', [ 'child_category' => $child_category, 'font_color' => $font_color, 'bg_color' => $bg_color, ])