From 86c645fb36b2f32c1d3833112d24b0e1e51352c9 Mon Sep 17 00:00:00 2001 From: Konstantinos Arvanitakis Date: Thu, 27 Aug 2026 01:58:37 +0300 Subject: [PATCH] Feat: Adding Color Product Option Types --- config/core.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/config/core.php b/config/core.php index 5e0f027..e56303c 100644 --- a/config/core.php +++ b/config/core.php @@ -16,4 +16,20 @@ 'auto_create_customer_for_user' => true, + /* + |-------------------------------------------------------------------------- + | Product Option Types + |-------------------------------------------------------------------------- + | + | Enabled `Modules\Core\Product\Contracts\ProductOptionTypeInterface` + | implementations. An admin picks one per ProductOption from a dropdown + | on the option's own edit form — the selection is stored in + | ProductOption::meta, not tied to the option's handle. + | + */ + + 'product_option_types' => [ + \Modules\Core\Product\OptionTypes\ColorOptionType::class, + ], + ];