Example #1
0
 /**
  * @return Province
  */
 public function getProvince()
 {
     return $this->hasOne(Province::className(), ['id' => 'provinceId']);
 }
Example #2
0
 /**
  * @return array - list of Province having all the provinces belonging to this country
  */
 public function getProvinces()
 {
     return $this->hasMany(Province::className(), ['countryId' => 'id']);
 }