nova-sortable icon indicating copy to clipboard operation
nova-sortable copied to clipboard

Allows reordering when column is sorted

Open JshGrn opened this issue 1 year ago • 1 comments

Very basic install nothing additional. When clicking sort column and then reordering it works, however if you sort and then refresh it says its disabled. Latest install of Laravel + Nova + Spatie Sortable + nova-sortable (fresh project)

JshGrn avatar Sep 08 '23 20:09 JshGrn

do this in your resource


public static function canSort(NovaRequest $request, $resource): bool
    {
        return empty($request->input('orderBy'));
    }

lukakhin avatar Feb 14 '24 14:02 lukakhin