Skip to content
This repository has been archived by the owner on Nov 9, 2021. It is now read-only.

Commit

Permalink
Updated stub
Browse files Browse the repository at this point in the history
  • Loading branch information
rennokki committed May 14, 2021
1 parent 8ad7c96 commit 5254126
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions stubs/CashierRegisterServiceProvider.stub
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,27 @@ class CashierRegisterServiceProvider extends BaseServiceProvider

Saas::currency('EUR');

Saas::plan('Gold Plan', 'gold-plan')
->description('The gold plan is 10 EUR.')
$free = Saas::plan('Free Plan', 'price_free')
->monthly(0)
->features([
Saas::feature('5 Seats', 'seats', 5)->notResettable(),
Saas::feature('10,000 mails', 'mails', 10000),
]);

Saas::plan('Tier One', 'price_1')
->monthly(10)
->features([
Saas::feature('Build Minutes', 'build.minutes')->value(3000),
Saas::feature('Seats', 'seats')->unlimited(),
Saas::feature('Unlimited Seats', 'seats')->unlimited()->notResettable(),
Saas::feature('20,000 mails', 'mails', 20000),
Saas::feature('Beta Access', 'beta.access')->unlimited(),
]);

Saas::plan('Tier Two', 'price_2')
->monthly(20)
->features([
Saas::feature('Unlimited Seats', 'seats')->unlimited()->notResettable(),
Saas::feature('30,000 mails', 'mails', 30000),
Saas::feature('Beta Access', 'beta.access')->unlimited(),
]);
}

Expand Down

0 comments on commit 5254126

Please sign in to comment.