Sort with nulls last?
There's any way to create a custom sorting that will make NULLs stay last?
16 Replies
Depends do you want them last but then ascend 1-2-3-4-NULL
exactly, but I mean, there's any way to do custom sorting? I think I could figure something out from here
I really didn't find anything about it in the docs
but now thinking about it, I probably could rewrite the order inside
getEloquentQuery
but this would totally break the non-default column sortingYou should be able to write a custom query and a temporary table, so creating a high number where null. Just apply it where no sorting is applied in the eloquent query
@pedro.gabriel What are you trying to sort? A specific column I assume but what type of column and what does it contain?
it's a date column
So you want the dates ascending but records without a date (null) to be last.
exactly this
And then when sorting desc the null would be first and then desc?
when sorting again I really don't care, I mean
I just wanted to set the default sorting
Here you go. Add this to your
created_at
column (or whatever your date column is):
->sortable(query: fn (Builder $query) => $query->orderByRaw('-created_at desc'))
and then add ->defaultSort('created_at')
to your table.I had no idea the
sortable
had effect like this in the defaultSort
I'll test it
thanks a lot for the help (once again) @kennethseseMy pleasure!
it worked perfectly, thanks a lot
The only thing I'm noticing is that since we're hard coding the sort direction you can never sort 'asc'...not sure a good solution for that.
@pedro.gabriel Here's the fix so it always sorts correctly:
make sure you import Livewire above:
no need to use $livewire here
I thought that was an option but it wasn’t coming up in my ide so I didn’t even try 🤦♂️. Thanks!