request; $response = \Yii::$app->response; $response->format = $response::FORMAT_JSON; $projects = Project::find() ->asArray() ->andWhere([ 'not', [ 'project.lat' => NULL ], ]) ->andWhere([ 'not', [ 'project.lng' => NULL ], ]) ->all(); return [ 'result' => $projects ]; } }