/**
  * Customize the subscription plans for the application.
  *
  * @return void
  */
 protected function customizeSubscriptionPlans()
 {
     Spark::free()->features(['Feature 1', 'Feature 2', 'Feature 3']);
     Spark::plan('Basic', 'test-1')->price(9.99)->trialDays(7)->features(['Feature 1', 'Feature 2', 'Feature 3']);
 }
 /**
  * Customize the subscription plans for the application.
  *
  * @return void
  */
 protected function customizeSubscriptionPlans()
 {
     Spark::free()->features(['Just 1 reminder a month', 'Absolutely FREE']);
     Spark::plan('Basic', '100')->price(1)->trialDays(7)->features(['Up to 10 reminders a month', 'Cancel at any time', 'First week FREE']);
     Spark::plan('Gold', 'gold')->price(10)->trialDays(7)->features(['Up to 1000 reminders a month', 'Cancel at any time', 'First week FREE']);
 }
 /**
  * Customize the subscription plans for the application.
  *
  * @return void
  */
 protected function customizeSubscriptionPlans()
 {
     Spark::promotion('50-percent-off-membership');
     Spark::free()->features(['Learn to code on your own time!', 'New content offered weekly!', 'Learn best practices and current industry standards!']);
     Spark::plan('Premium - Monthly', 'jyrone-parker-blog-monthly')->price(9.99)->trialDays(7)->features(['Get access to wider array of tutorials!', 'Get added to my email list!', 'Get access to my virtual office hours!']);
     Spark::plan('Premium - Yearly', 'jyrone-parker-yearly')->price(99)->yearly()->trialDays(7)->features(['Save over 17% off regular membership!', 'Free T-Shirt!', '10% discount off everything in the store!']);
 }
 /**
  * Customize the subscription plans for the application.
  *
  * @return void
  */
 protected function customizeSubscriptionPlans()
 {
     Spark::free()->features(['Feature 1', 'Feature 2', 'Feature 3']);
     Spark::plan('basic', '001')->price(5)->trialDays(7)->features(['Feature 1', 'Feature 2', 'Feature 3']);
     Spark::plan('home edition', '002')->price(10)->trialDays(7)->features(['Feature 1', 'Feature 2', 'Feature 3']);
     Spark::plan('profesional', '003')->price(20)->trialDays(7)->features(['Feature 1', 'Feature 2', 'Feature 3']);
 }
 /**
  * Customize the subscription plans for the application.
  *
  * @return void
  */
 protected function customizeSubscriptionPlans()
 {
     Spark::free('Student')->features(['Feature 1', 'Feature 2', 'Feature 3']);
     Spark::plan('Teacher', 'stripe-id')->price(10)->trialDays(7)->features(['Feature 1', 'Feature 2', 'Feature 3']);
     Spark::plan('Organisation', 'stripe-id')->price(100)->trialDays(7)->features(['Feature 1', 'Feature 2', 'Feature 3']);
 }