Table using Orderable with Grouping is ordered weirdly

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


What my expectation is the order is grouped by their group
CleanShot_2023-09-06_at_10.52.45.png
Was this page helpful?