Files
isaaccladandCursor d8dbc83e2d
Deploy Ladill QR Plus / deploy (push) Successful in 28s
Extract Ladill Events as a standalone events suite at events.ladill.com.
Full control center for ticketed events, contributions, attendees, badges,
and programmes — not a QR utility clone. Includes SSO shell, import command,
and platform cutover runbook.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-07 09:39:53 +00:00

22 lines
959 B
PHP

<?php
return [
/*
| Email product plans. Mailboxes are priced purely by the storage tier chosen
| at creation (and changeable later via Upgrade). The 1 GB tier is FREE,
| forever, for every mailbox; larger tiers are billed monthly from the one
| Ladill wallet (§4-A). Money is in minor units (pesewas).
*/
'currency' => env('EMAIL_CURRENCY', 'GHS'),
'default_quota_mb' => (int) env('EMAIL_DEFAULT_QUOTA_MB', 1024), // new mailboxes start on the free 1 GB tier
// Storage tiers: quota (MB) → monthly price (minor units). 1 GB is free.
'quota_tiers' => [
['mb' => 1024, 'price_minor' => 0], // 1 GB — Free forever
['mb' => 5120, 'price_minor' => 1000], // 5 GB — GHS 10
['mb' => 10240, 'price_minor' => 2000], // 10 GB — GHS 20
['mb' => 25600, 'price_minor' => 3000], // 25 GB — GHS 30
['mb' => 51200, 'price_minor' => 6000], // 50 GB — GHS 60
],
];