Default sort direction on table groups
Is there a way to define the default sort direction on table groups?
Also, is it possible to disable the ordering for some groups?
Also, is it possible to disable the ordering for some groups?
// Exemple where it makes more sense to sort by descending order by default
Tables\Grouping\Group::make('priority')
->orderQueryUsing(function (Builder $query, string $direction) {
$query->orderByRaw('FIELD(priority, "low", "medium", "high") ' . $direction);
})