belongsTo('App\Logistic','logistic_id','id'); } public function province() { //省份 return $this->belongsTo(Region::class,'province_id','id'); } public function city() { //城市 return $this->belongsTo(Region::class,'city_id','id'); } public function unit(){ return $this->belongsTo('App\Unit','unit_id','id'); } public function getCarrierNameAttribute(){ return $this['carrier']? $this['carrier']['name']:null; } public function getProvinceNameAttribute(){ return $this['province']? $this['province']['name']:null; } public function getCityNameAttribute(){ return $this['city']? $this['city']['name']:null; } public function getUnitNameAttribute(){ return $this['unit']? $this['unit']['name']:null; } }