Retire Events subscriptions and owner payment gateways.
Deploy Ladill Events / deploy (push) Successful in 55s
Deploy Ladill Events / deploy (push) Successful in 55s
Make Ladill Events free for all accounts, remove plan upgrade UI, force Ladill Pay only for tickets and contributions, and reinstate standard platform fees.
This commit is contained in:
+8
-11
@@ -8,30 +8,27 @@ return [
|
||||
|
||||
'meet_app_url' => env('LADILL_MEET_APP_URL', 'https://meet.ladill.com'),
|
||||
|
||||
/*
|
||||
| Paid Events subscriptions (Pro / Business) are retired. Keep pro.* keys for
|
||||
| legacy renew command / DB rows; gating is always off via SubscriptionService.
|
||||
*/
|
||||
'pro' => [
|
||||
'enabled' => filter_var(env('EVENTS_PRO_ENABLED', true), FILTER_VALIDATE_BOOLEAN),
|
||||
'enabled' => false,
|
||||
'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', 49000)],
|
||||
'enterprise' => ['price_minor' => (int) env('EVENTS_ENTERPRISE_PRICE_MINOR', 149000)],
|
||||
],
|
||||
'plans' => [],
|
||||
|
||||
'prepaid_months' => [6, 12, 24],
|
||||
'prepaid_months' => [],
|
||||
|
||||
'free' => [
|
||||
'max_live_events' => (int) env('EVENTS_FREE_MAX_LIVE_EVENTS', 2),
|
||||
'max_tickets_per_month' => (int) env('EVENTS_FREE_MAX_TICKETS_PER_MONTH', 100),
|
||||
],
|
||||
|
||||
'upgrade_banner' => [
|
||||
'title' => 'Unlock Events Pro or Business',
|
||||
'description' => 'Unlimited events & tickets, with your own payment gateway — from GHS 490/mo.',
|
||||
'route' => 'events.pro.index',
|
||||
],
|
||||
'upgrade_banner' => null,
|
||||
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user