@extends('admin.layouts.master') @section('title','All Menus') @section('maincontent') @component('components.breadcumb',['secondaryactive' => 'active']) @slot('heading') {{ __('Menus') }} @endslot @slot('menu1') {{ __('Menus') }} @endslot @slot('button')
{{ __('Add Menus') }}
@endslot @endcomponent
{{ __('All Menu') }}
@foreach($menu as $key=>$policy) @endforeach
# {{ __('Menu Tittle') }} {{ __('Info') }} {{ __('Action') }}
{{ $key+1 }} {{ $policy->title }}

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

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

@endsection