sort record in a table
How can I do in the filament table, each record that is inserted into the database that appears at the beginning of the table
3 Replies
the last record to be inserted is the first in the table
Default sort:
->defaultSort('updated_at', 'desc')
->filters([
or with created_at
thaks!!!