@extends('admin.layouts.master-soyuz') @section('title',__('All Menus | ')) @section('body') @component('admin.component.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Home') }} @endslot @slot('menu1') {{ __("All Menu List") }} @endslot @slot('menu2') {{ __("All Menu List") }} @endslot @endcomponent @inject('pages','App\Page')
@if ($errors->any()) @endif
{{ __('All') }} {{ __('Menu List') }}
{{__("Note:")}}
  • {{__('Drag and Drop to sort the Menu Order')}}
@can('menu.create') {{__("Add Menu")}} @endcan @can('menu.delete') {{__("Delete Selected")}} @endcan

{{__("Delete Selected")}} {{__("Create")}}

@inject('footermenus','App\FooterMenu') @foreach($footermenus->get() as $key => $fm) @endforeach
# {{ __("Menu Title") }} {{ __("Info.") }} {{__("Action")}}
{{ $key + 1 }} {{ $fm->title }}

@if($fm->link_by == 'page') {{ __("Linked to:") }} {{__("Page")}} @else {{ __("Linked to:") }} {{__('URL')}} @endif

Widget Position: {{ $fm->widget_postion == 'footer_wid_3' ? __("Footer Widget 3") : __("Footer Widget 4") }}

{{ __('Status:') }} @if($fm->status == '1') {{ __("Active") }} @else {{__("Deactive")}} @endif

@foreach($footermenus->get() as $key => $fm) @endforeach @endsection @section('custom-script') @endsection