@extends('backend.layouts.form')
@section('title', $active . ' | ' . admin_trans('Footer Menu'))
@section('container', 'container-max-lg')
@section('link', route('admin.footerMenu.create'))
@section('language', true)
@if ($footerMenuLinks->count() == 0)
@section('btn_action', 'disabled')
@endif
@section('content')
@if ($footerMenuLinks->count() > 0)
@foreach ($footerMenuLinks as $footerMenuLink)
-
{{ $footerMenuLink->name }}
@if (count($footerMenuLink->children))
@foreach ($footerMenuLink->children as $child)
-
@endforeach
@endif
@endforeach
@else
@include('backend.partials.empty', ['class' => 'empty-lg'])
@endif
@if ($footerMenuLinks->count() > 0)
@push('styles_libs')
@endpush
@push('scripts_libs')
@endpush
@endif
@endsection