|
|
|
|
@ -13,9 +13,9 @@ class Company extends SoftDeletesModel
|
|
|
|
|
public function getIsYhInvestedTextAttribute()
|
|
|
|
|
{
|
|
|
|
|
if (empty($this->is_yh_invested)) {
|
|
|
|
|
return '否';
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
return $this->is_yh_invested == 1 ? '是' : '否';
|
|
|
|
|
return $this->is_yh_invested == 1 ? '被投企业' : '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function users()
|
|
|
|
|
|