categories = Category::find() ->with("lang.alias") ->where(["status"=>true]) ->orderBy("sort") ->all(); } public function run() { return $this->render( 'category_view', [ 'categories' => $this->categories ] ); } }