{{ __('Menu Structure') }} {{ __('You can update your Frontend Menu Structure here.') }} @if($translations)
{{ __('Back') }}
@foreach($translations as $locale => $translation) @if($locale !== config('app.settings.language'))
@endif @endforeach @elseif($addMenuItem || $updateMenuItem)
{{ __('Back') }}
@if($show_parent)
@else
{{ __('Other fields are disabled as this Menu Item has child Items') }}
@endif @else
@foreach($menus as $menu) @if($menu->parent_id === null)
{{ $menu->name }} {!! ($menu->target === '_blank') ? '' : '' !!}
{{ $menu->link }}
{!! ($menu->status) ? '' : '' !!}
@foreach($menu->getChildAll() as $child)
{{ $child->name }} {!! ($child->target === '_blank') ? '' : '' !!}
{{ $child->link }}
{!! ($child->status) ? '' : '' !!}
@endforeach @endif @endforeach
@endif
{{ __('Saved.') }} @if($translations) @elseif($addMenuItem || $updateMenuItem) @if($addMenuItem) @else @endif @else @endif