@extends('admin.layouts.app') @section('content')

{{__('Menu Management')}}

@include('admin.message')
@if(!empty($rows))
{{csrf_field()}}
@endif
{{__('All Menus')}}
@foreach($rows as $row) @endforeach
{{__('Title')}} {{__("Use for")}} {{__('Date')}}
{{$row->name}} @foreach($menu_locations as $l=>$menu_id) @if($menu_id == $row->id and isset($locations[$l])) {{$locations[$l]}}
@endif @endforeach
{{$row->updated_at}}
{{$rows->links()}}
@endsection