You can define your own service views. To do that just declare your component with the
hookRoute 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: [
...
hookRoute({
path: 'info',
context: ViewContext.Service,
component: ServiceDashboardComponent,
label: 'Service info',
priority: 900,
icon: 'rocket'
})
]
})