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.
35 lines
960 B
PHP
35 lines
960 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'service_api_keys' => [
|
|
'meet' => env('EVENTS_API_KEY_MEET', env('MEET_API_KEY_EVENTS')),
|
|
],
|
|
|
|
'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' => 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' => [],
|
|
|
|
'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' => null,
|
|
|
|
];
|