MedicOneSystems / livewire-datatables

Advanced datatables using Laravel, Livewire, Tailwind CSS and Alpine JS
https://livewire-datatables.com/
MIT License
1.19k stars 258 forks source link

sorting by date #498

Open goneill opened 2 years ago

goneill commented 2 years ago

Hi there - I've never done this before so please bear with me! I'm LOVING this code for my datatable - the one issue i'm finding is that the date types have no sort-by option. If I convert the column to text then it shows a sort and it works, but I can't sort by date type column. I hope this is helpful and THANK YOU! (I program from time to time on the side and this is really very helpful!)

Grainne

insulae commented 1 year ago

DateColumn it's a Extended Column so you must add ->sortable() method like this:

DateColumn::name('created_at')
->sortable()