monaye / nova-cashier-subscription
A Laravel Nova resource tool.
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 1
Language:Vue
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2025-03-24 00:05:09 UTC
README
Nova Cashier Subscription package provide two fields, credit card and plans user can subscribe which can be use similar to Forge/Envoyer like subscription management for user.
Features:
- save credit card information (Stripe)
- change subscribe plan (Stripe)
- display message if user is on active plan
- display message if user is on trial
- display message if user canceled and if user is still have trial period left
- display message if user canceled and is user is still on grace period
Table of Contents
Screenshots
Installation
This package can be installed via command:
composer require monaye/nova-cashier-subscription
Usage
Plan::make($planList), CreditCard::make($intentClientSecret, $stripeKey),
Plan List Format
return [
[
'label' => 'Free Plan',
'value' => self::FREE_PLAN,
],
[
'label' => 'Standard Plan',
'value' => config('stripe.standard_plan')
],
[
'label' => 'Premium Plan',
'value' => config('stripe.premium_plan'),
],
];
Intent Client Secret
For Intent Client Secret you can simply get with :
$user->createSetupIntent()->client_secret
Please check Laravel docs for detail
Handle request
Since every application handle little bit differently, the package doesn't come with a controller that will handle the request when user submit the creditcard update and plan update request.
You can defined the FQCN with method name in the config file like below:
[ 'handleCreditUpdate' => '\App\Http\Controllers\SubscriptionController@changeSubscription', 'handlePlanUpdate' => '\App\Http\Controllers\SubscriptionController@updateCreditCard' ]
To publish the config file:
php artisan vendor:publish --provider="Monaye\NovaCashierSubscription\ToolServiceProvider"
License
The License is free to use for non-military use and if you are:
- Personal use and make less than 1 million US dollar per year
- Corporate/Organization make less than 1 million revenue per year
License fees :
If you make more than 1 million US dollar, license fees $100/year. If you corporate/organization make more than 1 million revenue per year, license fees $150/year.
Use of license fee
All the revenue generate from this software will be donate back to following:
- To open source community (50%)
- To organization that support education for children (25%)
- To organization that fight for the Global Warming (25%)