Raise Pro and Enterprise prices by GHS 1,000 per branch.
Deploy Ladill Frontdesk / deploy (push) Successful in 1m42s

Pro is now GHS 1,990/branch/mo and Enterprise is GHS 2,990/branch/mo.
This commit is contained in:
isaacclad
2026-07-16 08:42:53 +00:00
parent cb2a9898eb
commit 4dea49fa50
3 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -181,7 +181,7 @@ class PlanService
{
return (int) config(
'frontdesk.plans.pro.price_minor_per_branch',
config('frontdesk.plans.pro.price_minor', 99000),
config('frontdesk.plans.pro.price_minor', 199000),
);
}
@@ -197,7 +197,7 @@ class PlanService
public function enterprisePricePerBranchMinor(): int
{
return (int) config('frontdesk.plans.enterprise.price_minor_per_branch', 199000);
return (int) config('frontdesk.plans.enterprise.price_minor_per_branch', 299000);
}
public function proPriceTotalMinor(Organization $organization): int
+6 -6
View File
@@ -143,14 +143,14 @@ return [
],
'pro' => [
'label' => 'Pro',
// GHS 990/branch/mo (legacy FRONTDESK_PRO_PRICE_MINOR still honored).
// GHS 1,990/branch/mo (legacy FRONTDESK_PRO_PRICE_MINOR still honored).
'price_minor_per_branch' => (int) env(
'FRONTDESK_PRO_PRICE_PER_BRANCH_MINOR',
env('FRONTDESK_PRO_PRICE_MINOR', 99000),
env('FRONTDESK_PRO_PRICE_MINOR', 199000),
),
'price_minor' => (int) env(
'FRONTDESK_PRO_PRICE_PER_BRANCH_MINOR',
env('FRONTDESK_PRO_PRICE_MINOR', 99000),
env('FRONTDESK_PRO_PRICE_MINOR', 199000),
),
'max_branches' => null,
'max_kiosk_devices' => null,
@@ -171,8 +171,8 @@ return [
],
'enterprise' => [
'label' => 'Enterprise',
// GHS 1990/branch/mo.
'price_minor_per_branch' => (int) env('FRONTDESK_ENTERPRISE_PRICE_PER_BRANCH_MINOR', 199000),
// GHS 2,990/branch/mo.
'price_minor_per_branch' => (int) env('FRONTDESK_ENTERPRISE_PRICE_PER_BRANCH_MINOR', 299000),
'max_branches' => null,
'max_kiosk_devices' => null,
// null = unlimited host email / SMS alerts.
@@ -358,7 +358,7 @@ return [
'upgrade_banner' => [
'title' => 'Unlock Frontdesk Pro or Enterprise',
'description' => 'Ladill-provided visitor kiosks, multi-branch, team, webhooks & reports — from GHS 990/branch/mo.',
'description' => 'Ladill-provided visitor kiosks, multi-branch, team, webhooks & reports — from GHS 1,990/branch/mo.',
'route' => 'frontdesk.pro.index',
],
+2 -2
View File
@@ -60,9 +60,9 @@ class FrontdeskProTest extends TestCase
->get(route('frontdesk.pro.index'))
->assertOk()
->assertSee('Choose your Frontdesk plan')
->assertSee('GHS 990')
->assertSee('/branch/mo')
->assertSee('GHS 1,990')
->assertSee('/branch/mo')
->assertSee('GHS 2,990')
->assertSee('Enterprise')
->assertSee('Branches');
}