model = new Post(); } public function actionView($id): void { $model = $this->model->where("id", $id)->first(); $model->load("user"); $res = []; if ($model){ $res = $model->toArray(); } $this->renderApi($res); } }