From b3842adaff65ddab8fe1d824c92ac34074cd6226 Mon Sep 17 00:00:00 2001 From: isaacclad Date: Thu, 16 Jul 2026 11:24:22 +0000 Subject: [PATCH] chore(pricing): align free host SMS allowance with suite messaging Free plan includes 50 host SMS per month to match platform free suite caps. --- config/frontdesk.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/frontdesk.php b/config/frontdesk.php index 289b451..d6c12e4 100644 --- a/config/frontdesk.php +++ b/config/frontdesk.php @@ -132,8 +132,8 @@ return [ 'max_branches' => 1, 'max_kiosk_devices' => 1, 'free_emails_per_month' => (int) env('FRONTDESK_FREE_EMAILS_PER_MONTH', 100), - // Free has no included SMS — billed per segment (or customer SMS key). - 'free_sms_per_month' => (int) env('FRONTDESK_FREE_SMS_PER_MONTH', 0), + // Align with platform suite free allowance (messaging.plans.free). + 'free_sms_per_month' => (int) env('FRONTDESK_FREE_SMS_PER_MONTH', 50), 'features' => [ 'check_in', 'hosts',