Slide 12
Slide 12 text
protected function customizeSubscriptionPlans() {
Spark::free()
->features([
'Feature 1',
'Feature 2',
'Feature 3',
]);
Spark::plan('Basic', 'stripe-id')->price(10)
->trialDays(7)
->features([
'Feature 1',
'Feature 2',
'Feature 3',
]);
}
SIMPLE