diff --git a/app/Models/Company.php b/app/Models/Company.php index b102b44..e289ffc 100644 --- a/app/Models/Company.php +++ b/app/Models/Company.php @@ -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()