Table using Orderable with Grouping is ordered weirdly
Here's the code
What my expectation is the order is grouped by their group
What my expectation is the order is grouped by their group

$table
->reorderable('order_column')
->groups([
Group::make('position.name')
->label('Position'),
])
->columns([
TextColumn::make('given_name')
->searchable(),
TextColumn::make('family_name'),
])