Update BuyableProduct.php

This commit is contained in:
Patrick
2021-01-18 22:21:50 +01:00
committed by GitHub
parent 7aacf1027b
commit aae1b7b9b4

View File

@@ -8,9 +8,9 @@ use Illuminate\Database\Eloquent\Model;
class BuyableProduct extends Model implements Buyable
{
protected $attributes = [
'id' => 1,
'name' => 'Item name',
'price' => 10.00,
'id' => 1,
'name' => 'Item name',
'price' => 10.00,
'weight' => 0,
];