spatie/eloquent-sortable
Can anyone help to override the spatie/eloquent sortable plugin to reorder the table? I'm working with relation manager
I have this code in my resource:
public $sortable = [
'order_column_name' => 'order',
'sort_when_creating' => true,
];
public function buildSortQuery()
{
return static::query()->where('parent_id', $this->parent_id);
} Can you help me if possible? @Dan Harrin
0 Replies