fix: subscription / plan switch, etc

This commit is contained in:
Andras Bacsai
2024-02-23 12:59:14 +01:00
parent f931ebece8
commit f78fd212bb
10 changed files with 74 additions and 61 deletions

View File

@@ -30,8 +30,7 @@ class Subscription extends Model
if (in_array($subscription, $ultimate)) {
return 'ultimate';
}
}
if (isStripe()) {
} else if (isStripe()) {
if (!$this->stripe_plan_id) {
return 'zero';
}
@@ -55,7 +54,8 @@ class Subscription extends Model
};
})->first();
if ($stripePlanId) {
return Str::of($stripePlanId)->after('stripe_price_id_')->before('_')->lower();
raY($stripePlanId);
return str($stripePlanId)->after('stripe_price_id_')->before('_')->lower();
}
}
return 'zero';