コード例 #1
0
ファイル: Categories.php プロジェクト: worstinme/yii2-zoo
 public function getApp()
 {
     return $this->hasOne(Applications::className(), ['id' => 'app_id']);
 }
コード例 #2
0
ファイル: Items.php プロジェクト: worstinme/yii2-zoo
 public function getApp()
 {
     return $this->hasOne(Applications::className(), ['id' => 'app_id'])->with('elements')->inverseOf('items');
 }