コード例 #1
0
ファイル: Mtcountries.php プロジェクト: hendrasyp/YII2-Setup
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getMtprovinces()
 {
     return $this->hasMany(Mtprovinces::className(), ['province_country_id' => 'country_id']);
 }
コード例 #2
0
ファイル: Mtcities.php プロジェクト: hendrasyp/YII2-Setup
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCityProvince()
 {
     return $this->hasOne(Mtprovinces::className(), ['province_id' => 'city_province_id']);
 }