Files
ladill-events/config/events.php
T
isaaccladandCursor 4c87c786da
Deploy Ladill Events / deploy (push) Successful in 42s
Add Events Pro/Business and BYO ticket gateways.
Cut ticket checkouts off Ladill Pay, settle to merchant gateways at 0% platform fee, and mirror Invoice freemium pricing (GHS 49 / 149).

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-15 01:26:28 +00:00

38 lines
1.2 KiB
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'),
'pro' => [
'enabled' => filter_var(env('EVENTS_PRO_ENABLED', true), FILTER_VALIDATE_BOOLEAN),
'price_minor' => (int) env('EVENTS_PRO_PRICE_MINOR', 4900),
'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)],
],
'prepaid_months' => [6, 12, 24],
'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 49/mo.',
'route' => 'events.pro.index',
],
];