'servicegroup-table']; protected function init(): void { $this->initializeDetailActions(); $this->setDetailUrl(Url::fromPath('icingadb/servicegroup')); } protected function getLayout(): string { return $this->getViewMode() === 'grid' ? 'group-grid' : parent::getLayout(); } protected function getItemClass(): string { return $this->getViewMode() === 'grid' ? ServicegroupGridCell::class : ServicegroupTableRow::class; } }