Answer the question
In order to leave comments, you need to log in
Sort get params under a different name, how to do?
$provider = new ActiveDataProvider([
'query' => $articles,
'sort' => [
'attributes' => [
'rating',
'comments',
'createdAt',
],
'defaultOrder' => ['createdAt' => SORT_DESC],
],
'pagination' => [
'defaultPageSize' => 24,
'pageSizeParam' => false,
'totalCount' => $articles->count(),
],
]);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question