Я хочу установить нумерацию страниц на своей странице блогов. До нумерации страниц это действие работает.
$data = [];
$query = Blog::find()->where(['status'=>1])->multilingual()->orderBy(['id'=>SORT_DESC])->all();
$count = count($query);
$pagination = new Pagination(['totalCount' => $count]);
// limit the query using the pagination and retrieve the articles
$data['blog'] = $query->offset($pagination->offset)->limit($pagination->limit)->all();
return $this->render('blog-list',['data'=>$data, 'pagination'=>$pagination]);
Всякий раз, когда я устанавливал PageSize, проблема еще не решалась.