@extends('core::layouts.master') @section('title') {{ trans_choice('core::general.manage',1) }} {{ trans_choice('core::general.menu',1) }} @endsection @section('styles') @stop @section('content')

{{ trans_choice('core::general.manage',1) }} {{ trans_choice('core::general.menu',2) }} {{ trans_choice('core::general.back',1) }}

    @foreach($data as $parent) @if($parent->children->count()==0)
  • {{$parent->name}}
  • @else
  • {{$parent->name}}
      @foreach($parent->children as $child)
    • {{$child->name}}
    • @endforeach
  • @endif @endforeach
@endsection @section('scripts') @endsection