@extends("common.layout") @section("header") @endsection @section("content")

사이트 메뉴 관리

메뉴목록
@foreach ($menus as $menu) @php $child = $menu->child; @endphp
@if ($child->isNotEmpty()) @endif
@foreach ($child as $subMenu)
@php $items = $subMenu->child; @endphp
@if ($items->isNotEmpty()) @endif
@if ($items->isNotEmpty())
@foreach ($items as $item)
@endforeach
@endif
@endforeach
@endforeach
@endsection @push("script") @endpush