Laravel Nova - Reorder left navigation menu items

坚强是说给别人听的谎言 提交于 2019-12-01 05:19:38

问题


In default the ordering of left menu items is in alphabetical order.

My client wants to order those menus manually. Any idea how to make it possible?


回答1:


You can do it in

App\Providers\NovaServiceProvider.php

add a method resources() and register the resources manually like

 protected function resources()
    {
        Nova::resources([
            User::class,
            Post::class,
        ]);
    }



回答2:


you can use grouping if that helps. I know it's not a 100% fix but maybe it will help a bit.

public static $group = 'Admin';


来源:https://stackoverflow.com/questions/53405577/laravel-nova-reorder-left-navigation-menu-items

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!