Service dashboard

You can define your own service views. To do that just declare your component with the HOOK_ROUTE hook using the ViewContext.Servicecontext. For example, you can use a dashboard component to allow for further customization of your service details view:

@NgModule({
    ...
    providers: [
       ...
        {
        provide: HOOK_ROUTE,
        useValue: [
            {
            path: 'info',
            context: ViewContext.Service,
            component: ServiceDashboardComponent,
            label: 'Service info',
            priority: 900,
            icon: 'rocket'
            }
        ],
        multi: true
        }
    ]
})