table reorderable doen't work

return $table
            ->reorderable('order')
            ->defaultSort('order')
            ->columns([
                TextColumn::make('id')
                    ->translateLabel()
                    ->sortable(['lessons.id']),

                TextColumn::make('name')
                    ->label(__('Title'))
                    ->sortable(['lessons.name'])
                    ->searchable(['lessons.name']),


the reorder button doesn't show on the table
image.png
Was this page helpful?