Raise suite Pro and Business/Enterprise prices tenfold.
Deploy Ladill Events / deploy (push) Successful in 1m3s

Free tiers stay free. Paid defaults and marketing copy use the new GHS amounts (e.g. Pro 79→790, Business 249→2490).
This commit is contained in:
isaacclad
2026-07-15 13:53:48 +00:00
parent 69ede57c03
commit 6a793548ad
+4 -4
View File
@@ -10,15 +10,15 @@ return [
'pro' => [
'enabled' => filter_var(env('EVENTS_PRO_ENABLED', true), FILTER_VALIDATE_BOOLEAN),
'price_minor' => (int) env('EVENTS_PRO_PRICE_MINOR', 4900),
'price_minor' => (int) env('EVENTS_PRO_PRICE_MINOR', 49000),
'currency' => env('EVENTS_PRO_CURRENCY', 'GHS'),
'period_days' => (int) env('EVENTS_PRO_PERIOD_DAYS', 30),
'grace_days' => (int) env('EVENTS_PRO_GRACE_DAYS', 3),
],
'plans' => [
'pro' => ['price_minor' => (int) env('EVENTS_PRO_PRICE_MINOR', 4900)],
'enterprise' => ['price_minor' => (int) env('EVENTS_ENTERPRISE_PRICE_MINOR', 14900)],
'pro' => ['price_minor' => (int) env('EVENTS_PRO_PRICE_MINOR', 49000)],
'enterprise' => ['price_minor' => (int) env('EVENTS_ENTERPRISE_PRICE_MINOR', 149000)],
],
'prepaid_months' => [6, 12, 24],
@@ -30,7 +30,7 @@ return [
'upgrade_banner' => [
'title' => 'Unlock Events Pro or Business',
'description' => 'Unlimited events & tickets, with your own payment gateway — from GHS 49/mo.',
'description' => 'Unlimited events & tickets, with your own payment gateway — from GHS 490/mo.',
'route' => 'events.pro.index',
],