1. Go to this page and download the library: Download keoby/laravel-plans library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use Keoby\LaravelPlans\Traits\HasPlans;
class User extends Model {
use HasPlans;
...
}
$plan = Plan::create([
'name' => 'Enterprise',
'description' => 'The biggest plans of all.',
'duration' => 30, // in days
]);
$plan->features()->saveMany([
new Feature([
'name' => 'Vault access',
'code' => 'vault.access',
'description' => 'Offering access to the vault.',
'type' => 'feature',
]),
new Feature([
'name' => 'Build minutes',
'code' => 'build.minutes',
'description' => 'Build minutes used for CI/CD.',
'type' => 'limit',
'limit' => 2000,
]),
new Feature([
'name' => 'Users amount',
'code' => 'users.amount',
'description' => 'The maximum amount of users that can use the app at the same time.',
'type' => 'limit',
'limit' => -1, // or any negative value
]),
...
]);
$subscription->features()->get(); // All features
$subscription->features()->code($codeId)->first(); // Feature with a specific code.
$subscription->features()->limited()->get(); // Only countable/unlimited features.
$subscription->features()->feature()->get(); // Uncountable, permission-like features.
// The current subscription got longer with 60 days.
$currentSubscription = $user->upgradeCurrentPlanTo($anotherPlan, 60, true);
// A new subscription, with 60 days valability, starting when the current one ends.
$newSubscription = $user->upgradeCurrentPlanTo($anotherPlan, 60, false);
// Creates a new subscription that starts at the end of the current one, for 30 days and recurrent.
$newSubscription = $user->upgradeCurrentPlanTo($anotherPlan, 30, false, true);
// The current subscription got extended with 60 days.
$currentSubscription = $user->extendCurrentSubscriptionWith(60, true);
// A new subscription, which starts at the end of the current one.
$newSubscription = $user->extendCurrentSubscriptionWith(60, false);
// A new subscription, which starts at the end of the current one and is recurring.
$newSubscription = $user->extendCurrentSubscriptionWith(60, false, true);
// Returns false if there is not an active subscription.
$user->cancelCurrentSubscription();
$lastActiveSubscription = $user->lastActiveSubscription();
$lastActiveSubscription->isCancelled(); // true
$lastActiveSubscription->isPendingCancellation(); // true
$lastActiveSubscription->isActive(); // false
$lastActiveSubscription->hasStarted();
$lastActiveSubscription->hasExpired();
$listen = [
...
\Keoby\Plans\Events\CancelSubscription::class => [
// $event->model = The model that cancelled the subscription.
// $event->subscription = The subscription that was cancelled.
],
\Keoby\Plans\Events\NewSubscription::class => [
// $event->model = The model that was subscribed.
// $event->subscription = The subscription that was created.
],
\Keoby\Plans\Events\NewSubscriptionUntil::class => [
// $event->model = The model that was subscribed.
// $event->subscription = The subscription that was created.
],
\Keoby\Plans\Events\ExtendSubscription::class => [
// $event->model = The model that extended the subscription.
// $event->subscription = The subscription that was extended.
// $event->startFromNow = If the subscription is exteded now or is created a new subscription, in the future.
// $event->newSubscription = If the startFromNow is false, here will be sent the new subscription that starts after the current one ends.
],
\Keoby\Plans\Events\ExtendSubscriptionUntil::class => [
// $event->model = The model that extended the subscription.
// $event->subscription = The subscription that was extended.
// $event->expiresOn = The Carbon instance of the date when the subscription will expire.
// $event->startFromNow = If the subscription is exteded now or is created a new subscription, in the future.
// $event->newSubscription = If the startFromNow is false, here will be sent the new subscription that starts after the current one ends.
],
\Keoby\Plans\Events\UpgradeSubscription::class => [
// $event->model = The model that upgraded the subscription.
// $event->subscription = The current subscription.
// $event->startFromNow = If the subscription is upgraded now or is created a new subscription, in the future.
// $event->oldPlan = Here lies the current (which is now old) plan.
// $event->newPlan = Here lies the new plan. If it's the same plan, it will match with the $event->oldPlan
],
\Keoby\Plans\Events\UpgradeSubscriptionUntil::class => [
// $event->model = The model that upgraded the subscription.
// $event->subscription = The current subscription.
// $event->expiresOn = The Carbon instance of the date when the subscription will expire.
// $event->startFromNow = If the subscription is upgraded now or is created a new subscription, in the future.
// $event->oldPlan = Here lies the current (which is now old) plan.
// $event->newPlan = Here lies the new plan. If it's the same plan, it will match with the $event->oldPlan
],
\Keoby\Plans\Events\FeatureConsumed::class => [
// $event->subscription = The current subscription.
// $event->feature = The feature that was used.
// $event->used = The amount used.
// $event->remaining = The total amount remaining. If the feature is unlimited, will return -1
],
\Keoby\Plans\Events\FeatureUnconsumed::class => [
// $event->subscription = The current subscription.
// $event->feature = The feature that was used.
// $event->used = The amount reverted.
// $event->remaining = The total amount remaining. If the feature is unlimited, will return -1
],
];
bash
$ php artisan migrate
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.