@extends('layouts.admin.master') @section('tab-name', 'تنظیمات منوی سایت') @section('content')
افزودن آیتم جدید
@csrf
ساختار چیدمان منو
    @foreach($menus as $menu)
  1. {{ $menu->name }}
    @if(is_null($menu->route_name)) @else سیستمی @endif
    @if($menu->children->count() > 0)
      @foreach($menu->children as $child)
    1. {{ $child->name }}
      @if(is_null($child->route_name)) @endif
    2. @endforeach
    @endif
  2. @endforeach
@stop @push('scripts') @endpush