toUnit($unit); return (string)round($value, 2); } /** * For the HTTP Resource call */ public function toJson() { return [ 'kg' => round($this->toUnit('kg'), 2), 'lgs' => round($this->toUnit('lbs'), 2), ]; } }