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.
This commit is contained in:
Paulo Castellano 2026-05-21 20:04:16 -03:00
parent e8fcbfa230
commit 2fff7f66f3

View file

@ -135,6 +135,6 @@
|
*/
'trial_days' => env('CASHIER_TRIAL_DAYS', 7),
'trial_days' => env('CASHIER_TRIAL_DAYS', 8),
];