@extends('admin.layouts.master') @section('title','All Menus') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __('All Menus') }}
@foreach($menu as $key=>$policy) @endforeach
# {{ __('Menu') }} {{ __('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