How to use Table sortable() with Translatable?
I have a json column Translatable Model, how do set the order by/sortable()' sortable() doesn't play nice with it, I am using :Spatie Translatable
1 Reply
Try something like:
->sortable(query: fn (Builder $query, string $direction): Builder => $query->orderBy(
Model::select('name->' . $table->getLivewire()->activeLocale),
$direction,
)),