SubNavigation Sort Order when Mixing Groups and Items

I want to do Item then group then item, but it seems to always put the items at the top. I dont want put the other items in groups as that changes their design. Any suggestions?

return [
    NavigationItem::make('Review Status')
        ->badge($statusCount, $statusColor),
    NavigationGroup::make('Items to Review')
        ->collapsible(false)
        ->items($this->getReviewItemsNavigation()),
    NavigationItem::make('Comments')
        ->url('#review-comments'),
];
Was this page helpful?