@extends('backend.layout.master') @section('title', __('All Menus')) @section('style') @endsection @section('content')

{{ __('All Menus') }}

@foreach ($all_menus as $menu) @endforeach
{{ __('ID') }} {{ __('Title') }} {{ __('Status') }} {{ __('Created At') }} {{ __('Action') }}
{{ $menu->id }} {{ $menu->title }} {{ $menu->created_at->diffForHumans() }}

{{ __('Add New Menu') }}

@csrf
@can('menu-add') @endcan
@endsection @section('script') @endsection