@extends('layouts.app') @section('title') Menus @endsection @section('headerWithButton')

@yield('title')

@endsection @php $trClass = 'px-3 py-2 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider'; @endphp @push('styles') @endpush @section('content') @php $parentCount = 0; @endphp @foreach ($menus as $parent) @php $parentCount++; $childParent = $parentCount; $checked = $parent->is_published == true ? 'checked' : ''; @endphp @if ($parent->children) @foreach ($parent->children as $child1) @php $parentCount++; $child1Parent = $parentCount; $checked = $child1->is_published == true ? 'checked' : ''; @endphp @if ($child1->children) @foreach ($child1->children as $child2) @php $parentCount++; $checked = $child2->is_published == true ? 'checked' : ''; @endphp @endforeach @endif @endforeach @endif @endforeach @endsection @section('scripts') @include('menu.partials.scripts') @endsection