diff --git a/README.md b/README.md index 3958faa3..10d5397c 100644 --- a/README.md +++ b/README.md @@ -416,6 +416,9 @@ class Product extends Model implements Buyable { public function getBuyablePrice($options = null) { return $this->price; } + public function getBuyableWeight($options = null) { + return $this->weight; + } } ```