@extends('backEnd.layouts.master') @section('title', 'Menu Settings') @push('styles') @endpush @section('content')

Menu Settings

Control which pages appear in the site navigation menu
Add New Page
@if($menuItems->isEmpty())

No pages found.

Create a page
@else
@csrf
@foreach($menuItems as $page) @endforeach
Page Title Slug / URL Show in Menu Sort Order Edit
{{ $page->title }} /page/{{ $page->slug }}
show_in_menu ? 'checked' : '' }}>
@endif
Default Navigation Links

These links are always shown in the main navigation:

@foreach(['Home' => '/', 'Products' => '/products', 'Cart' => '/cart', 'Checkout' => '/checkout'] as $label => $url)
{{ $label }} {{ $url }}
@endforeach
@endsection