In rails admin, you can define a navigation label to a model and its children like so:
# in rails_admin.rb
config.model Order do
navigation_label 'Orders related'
end
config.model OrderProducts do
parent Order
end
Is there a way to add labels to the navigation menu without creating models (i.e. just for grouping)?