@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)
-
{{ $bottomNavLink->name }}
@if (count($bottomNavLink->children))
@foreach ($bottomNavLink->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