changed bid datatype

This commit is contained in:
Ritikesh yadav
2024-05-10 16:09:13 +05:30
parent 8280ae4e4e
commit df3e374e0f

View File

@@ -66,7 +66,7 @@ class MarketplaceFractionalRealEstateSeller extends Model
$bidArr[] = round(($bid->getAttributes()['total_purchase_value'] - $this->current_market_value_of_the_property)/$this->current_market_value_of_the_property * 100,3);
}
if($bidArr){
return (string)max($bidArr);
return max($bidArr);
}
return 0;
}