You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hola Rafael, there is an order variable which is defined in the DataTableController.
So, in the ArticleDataTable file, extend that variable and if the published_at is 4th column in that datatable, and if you'd like to sort articles by descending order, change it like below.
protected$order = [3, 'desc'];
Feel free to ask more, if you have any other questions.
How can I order the articles table by published_at?
public function index(ArticleDataTable $dataTable)
{
return $dataTable->render('admin.table', ['link' => route('admin.article.create')]);
}
The text was updated successfully, but these errors were encountered: