Keep POS retail catalog product-only and raise Pro pricing.
Deploy Ladill POS / deploy (push) Successful in 46s

Retail still reads live CRM products only (not services), products mode follows the acting branch, and suite Pro/Business defaults match the tenfold price update.
This commit is contained in:
isaacclad
2026-07-15 13:54:53 +00:00
parent 7c20cf705a
commit e2b608a506
4 changed files with 12 additions and 9 deletions
+4 -4
View File
@@ -12,15 +12,15 @@ return [
'pro' => [
'enabled' => filter_var(env('POS_PRO_ENABLED', true), FILTER_VALIDATE_BOOLEAN),
'price_minor' => (int) env('POS_PRO_PRICE_MINOR', 7900),
'price_minor' => (int) env('POS_PRO_PRICE_MINOR', 79000),
'currency' => env('POS_PRO_CURRENCY', 'GHS'),
'period_days' => (int) env('POS_PRO_PERIOD_DAYS', 30),
'grace_days' => (int) env('POS_PRO_GRACE_DAYS', 3),
],
'plans' => [
'pro' => ['price_minor' => (int) env('POS_PRO_PRICE_MINOR', 7900)],
'enterprise' => ['price_minor' => (int) env('POS_ENTERPRISE_PRICE_MINOR', 24900)],
'pro' => ['price_minor' => (int) env('POS_PRO_PRICE_MINOR', 79000)],
'enterprise' => ['price_minor' => (int) env('POS_ENTERPRISE_PRICE_MINOR', 249000)],
],
'prepaid_months' => [6, 12, 24],
@@ -38,7 +38,7 @@ return [
'upgrade_banner' => [
'title' => 'Unlock POS Pro or Business',
'description' => 'Unlimited registers & catalog, stock tracking & ecosystem sync — from GHS 79/mo.',
'description' => 'Unlimited registers & catalog, stock tracking & ecosystem sync — from GHS 790/mo.',
'route' => 'pos.pro.index',
],
];