livewire-datatables
livewire-datatables copied to clipboard
sorting by date
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
DateColumn it's a Extended Column so you must add ->sortable() method like this:
DateColumn::name('created_at')
->sortable()