diff --git a/app/Services/Care/PlanService.php b/app/Services/Care/PlanService.php index 407feed..c12ea41 100644 --- a/app/Services/Care/PlanService.php +++ b/app/Services/Care/PlanService.php @@ -32,6 +32,6 @@ class PlanService public function proPriceMinor(): int { - return (int) config('care.plans.pro.price_minor', 15000); + return (int) config('care.plans.pro.price_minor', 19900); } } diff --git a/config/care.php b/config/care.php index e76685f..ceee2e1 100644 --- a/config/care.php +++ b/config/care.php @@ -212,7 +212,7 @@ return [ ], 'pro' => [ 'label' => 'Pro', - 'price_minor' => (int) env('CARE_PRO_PRICE_MINOR', 15000), + 'price_minor' => (int) env('CARE_PRO_PRICE_MINOR', 19900), 'max_branches' => null, ], ],