From 6a793548ad7fd2eea798d857eccdc114df6ee65d Mon Sep 17 00:00:00 2001 From: isaacclad Date: Wed, 15 Jul 2026 13:53:48 +0000 Subject: [PATCH] Raise suite Pro and Business/Enterprise prices tenfold. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Free tiers stay free. Paid defaults and marketing copy use the new GHS amounts (e.g. Pro 79→790, Business 249→2490). --- config/events.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/events.php b/config/events.php index 72c5914..c7d2449 100644 --- a/config/events.php +++ b/config/events.php @@ -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', ],