From 2fff7f66f3cb4c1038ac4f5760c2c7e751fde46a Mon Sep 17 00:00:00 2001 From: Paulo Castellano Date: Thu, 21 May 2026 20:04:16 -0300 Subject: [PATCH] fix(billing): update default trial days to 8 in cashier config Increase the default trial duration from 7 to 8 days in the cashier configuration to better align with user feedback and improve trial experience. --- config/cashier.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cashier.php b/config/cashier.php index ed1ff73b..44c30230 100644 --- a/config/cashier.php +++ b/config/cashier.php @@ -135,6 +135,6 @@ | */ - 'trial_days' => env('CASHIER_TRIAL_DAYS', 7), + 'trial_days' => env('CASHIER_TRIAL_DAYS', 8), ];