hasMany('App\UserWorkgroup'); } public function province() { //省 return $this->belongsTo(Region::class)->where("type",1); } public function city() { //市 return $this->belongsTo(Region::class)->where("type",2); } public function county() { //区县 return $this->belongsTo(Region::class)->where("type",3); } }