feat(product): 移除商品起停用功能,後端預設所有商品為啟用狀態

This commit is contained in:
2026-02-05 16:12:55 +08:00
parent af06ca7695
commit 096a114457

View File

@@ -152,7 +152,6 @@ class ProductController extends Controller
'price' => (float) $product->price, 'price' => (float) $product->price,
'member_price' => (float) $product->member_price, 'member_price' => (float) $product->member_price,
'wholesale_price' => (float) $product->wholesale_price, 'wholesale_price' => (float) $product->wholesale_price,
'is_active' => (bool) $product->is_active,
] ]
]); ]);
} }