public function getRouteData()
 {
     return Page::query()->select(['id', 'path', 'page_type'])->orderBy('route_priority', 'desc')->get()->toArray();
 }
Exemplo n.º 2
0
 public function actionIndex()
 {
     return $this->render(['items' => Page::query()->orderBy(['date_insert' => SORT_DESC])->all()]);
 }