@extends('admin.layout') @section('title','Navigation Menu') @section('page-title','Navigation Menu') @section('content')

Current Menu Structure

Drag to reorder (coming soon) · Toggle active/inactive · Delete
@forelse($items as $item)
{{ $item->label }}
{{ $item->url }}
{{ $item->is_active ? 'Active' : 'Hidden' }}
@csrf
@csrf @method('DELETE')
@foreach($item->children as $child)
{{ $child->label }}
{{ $child->url }}
{{ $child->is_active ? 'Active' : 'Hidden' }}
@csrf
@csrf @method('DELETE')
@endforeach @empty
No menu items. Add some!
@endforelse

Add Menu Item

@csrf
Use /page/slug for custom pages, or any URL
Quick Links
Create a custom page first, then add it here as a menu item using /page/your-slug
Create New Page
@endsection