@extends('layouts.app')
@section('title', 'Settings — Footer Menus')
@section('page-title', 'Footer Menus')
@section('content')
Footer Menus
Manage the footer's text content, the two link columns, and the bottom-bar links. Column count is fixed to match the site design.
@foreach($columnGroups as $group)
@include('settings.footer-menus._link-group', ['group' => $group, 'showTitleEditor' => true, 'contentPages' => $contentPages])
@endforeach
@if($bottomGroup)
Bottom Bar Links
Shown next to the copyright line at the very bottom of the footer.
@include('settings.footer-menus._link-group', ['group' => $bottomGroup, 'showTitleEditor' => false, 'contentPages' => $contentPages])
@endif
@push('scripts')
@endpush
@endsection