Update BuyableProduct.php

This commit is contained in:
Patrick
2022-02-05 17:36:34 +01:00
committed by GitHub
parent ff2b124e6b
commit a4f1b8cb9f

View File

@@ -23,10 +23,11 @@ class BuyableProduct extends Model implements Buyable
];
protected $attributes = [
'id' => 1,
'name' => 'Item name',
'price' => 10.00,
'weight' => 0,
'id' => 1,
'name' => 'Item name',
'price' => 10.00,
'currency' => 'USD',
'weight' => 0,
];
/**