From bae520b518e0e1d36a8fc9cc24a8821b53caa531 Mon Sep 17 00:00:00 2001 From: Bohdan Shulha Date: Wed, 28 Aug 2024 18:19:47 +0200 Subject: [PATCH] fix: pricing on the billing page --- config/billing.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/billing.php b/config/billing.php index a0bf4c6..302cfde 100644 --- a/config/billing.php +++ b/config/billing.php @@ -5,7 +5,7 @@ 'plans' => [ [ 'name' => 'Hobby', - 'price' => 19, + 'price' => 9, 'description' => 'Perfect plan to try the service or host non-critical applications', 'product_id' => env('PADDLE_PLAN_HOBBY_PRODUCT_ID'), 'price_id' => env('PADDLE_PLAN_HOBBY_PRICE_ID'), @@ -18,7 +18,7 @@ ], [ 'name' => 'Startup', - 'price' => 49, + 'price' => 19, 'description' => 'Need more power or an improved stability? This is your choice!', 'product_id' => env('PADDLE_PLAN_STARTUP_PRODUCT_ID'), 'price_id' => env('PADDLE_PLAN_STARTUP_PRICE_ID'),