@extends('layouts.app') @section('header-title', __('Footer')) @section('content')

{{ __('Footer') }}

{{ __('Menus') }}

{{ __('Drag and Drop to use menu') }}

@foreach ($menus as $menu)
{{ $menu->name }}
@endforeach

{{ __('Pages') }}

{{ __('Drag and Drop to use page') }}

@foreach ($pages as $page)
{{ $page->title }}
@endforeach

{{ __('Disabled Items') }}

{{ __('Drag and Drop to enable or disable') }}

@forelse ($disableItems as $item)
@if ($item->type == 'logo')
icon
@elseif ($item->type == 'social_links')
icon
@elseif ($item->type == 'app_store')
icon
@else
{{ $item->title }}
@endif
@empty

{{ __('No disabled items') }}

@endforelse

{{ __('Footer Structure') }}

{{ __('Drag and Drop to Reorder both sections and items') }}

@foreach ($footers as $footer) @endforeach
@endsection @push('css') @endpush @push('scripts') @endpush