@extends('admin.layouts.app') @php $menu_sections = @$menu_sections; @endphp @section('content')

Menu Manager

Menu Section Ordering

@if(!empty($menu_sections))
    @foreach($menu_sections as $section)
  • @endforeach
@endif

Menu Item Ordering

@if(!empty($menu_sections))
@foreach($menu_sections as $section) @php $section->menus = collect($section->menus)->all(); @endphp @if(!empty($section->menus)) @endif @endforeach
@endif
@endsection @section('scripts') @endsection