Php – Yii2 ActiveForm Model doesn't exist
I have a controller in Yii2 app with the following actions: private function actionPagination($query) { $count = $query->count(); $pagination = new Pagination([ 'defaultPageSize' => 10, 'totalCount' => $count, ]); $books = $query ->orderBy('id') ->offset($pagination->offset) ->limit($pagination->limit) ->all(); return [$books, $pagination]; }…