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