@extends('admin.layouts.grid') @section('section', translate('Navigation')) @section('title', translate('Top Nav Links')) @section('create', route('admin.navigation.top-nav-links.create')) @section('container', 'container-max-lg') @section('content') @if ($topNavLinks->count() > 0)
    @foreach ($topNavLinks as $topNavLink)
  1. {{ $topNavLink->name }}
    @method('DELETE') @csrf
    @if (count($topNavLink->children))
      @foreach ($topNavLink->children as $child)
    1. {{ $child->name }}
      @method('DELETE') @csrf
    2. @endforeach
    @endif
  2. @endforeach
@else
@include('admin.partials.empty', ['empty_classes' => 'empty-lg'])
@endif @push('top_scripts') @endpush @push('styles_libs') @endpush @push('scripts_libs') @endpush @endsection