We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fd34e2 commit 3cbfe13Copy full SHA for 3cbfe13
src/Console/Commands/CreateStripePlans.php
@@ -94,6 +94,11 @@ protected function createProduct()
94
protected function createStripePlans($plans)
95
{
96
foreach ($plans as $plan) {
97
+ if ($plan->id === 'free') {
98
+ $this->line('Skipping free plan, since the "free" plan is handled by Spark internally.');
99
+ continue;
100
+ }
101
+
102
if ($this->planExists($plan)) {
103
$this->line('Stripe plan ' . $plan->id . ' already exists');
104
} else {
0 commit comments