Update BuyableProductTrait.php

This commit is contained in:
Patrick
2022-02-05 17:37:07 +01:00
committed by GitHub
parent 5b4d779182
commit a6a0b1f802

View File

@@ -24,9 +24,10 @@ class BuyableProductTrait 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,
];
}