@extends('admin.layouts.admin') {{-- =========== meta Title =================== --}} @section('title') ساخت منو @endsection {{-- =========== My Css Style =================== --}} @section('style') @endsection @section('script') @endsection @section('content')

مدیریت منو ها

منو

    @foreach($menus as $menu)
  1. {{$menu->name}}
    @if($menu->children->isNotEmpty())
      @foreach($menu->children as $child)
    1. {{$child->name}}
    2. @endforeach
    @endif
  2. @endforeach
@endsection