How to add submenu in left menu in administration APP

Hi Teams,
Our requirements is add one sub menu in account menu.
image

we have created plugin, need to navigate under the account menu as a submenu(user access)

Kindly give me solution

Thanks in advance
Rahul

Hi @rmishra1,

You can specify the label of the parent node using the parent attribute:

    hookNavigator({
      label: 'Test',
      icon: 'cloud',
      path: 'test',
      parent: 'Accounts'
    })

Multiple samples for this can also be found in the tutorial application.

Regards,
Tristan

Ok thanks Tristan Bastian