@extends('admin.layouts.grid') @section('section', translate('Navigation')) @section('title', translate('Bottom Nav Links')) @section('create', route('admin.navigation.bottom-nav-links.create')) @section('container', 'container-max-lg') @section('content') @if ($bottomNavLinks->count() > 0)
    @foreach ($bottomNavLinks as $bottomNavLink)
  1. {{ $bottomNavLink->name }}
    @method('DELETE') @csrf
    @if (count($bottomNavLink->children))
      @foreach ($bottomNavLink->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