@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)
-
@if (count($footerLink->children))
@foreach ($footerLink->children as $child)
-
@endforeach
@endif
@endforeach
@else
@include('admin.partials.empty', ['empty_classes' => 'empty-lg'])
@endif
@push('top_scripts')
@endpush
@push('styles_libs')
@endpush
@push('scripts_libs')
@endpush
@endsection