belongsTo('App\Logistic','logistic_id','id'); } public function province(){ return $this->belongsTo('App\Province','province_id','id'); } public function city(){ return $this->belongsTo('App\City','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; } }