Plan Craft Development
When to use this skill
Use this skill when implementing or modifying subscription-based features, defining user plans, and checking feature access or eligibility in Laravel applications using the realrashid/plan-craft package.
Features
- Publish configuration and migrations (
vendor:publishtags:plan-craft-config,plan-craft-migrations). - Add subscription capabilities to models using the
RealRashid\PlanCraft\Traits\HasPlantrait. - Define subscription plans, features, and limits in
config/plan-craft.php. - Programmatically subscribe, switch, or check eligibility for plans and features.
Examples
Publishing configuration and migrations
php artisan vendor:publish --provider="RealRashid\PlanCraft\PlanCraftServiceProvider" --tag="plan-craft-config"
php artisan vendor:publish --provider="RealRashid\PlanCraft\PlanCraftServiceProvider" --tag="plan-craft-migrations"
Adding subscription to a User model
use RealRashid\PlanCraft\Traits\HasPlan;
class User extends Authenticatable
{
use HasPlan;
}
Checking user eligibility in a controller
public function store(Request $request)
{
if (! auth()->user()->isEligible('create-posts')) {
return redirect()->back()->with('error', 'Upgrade your plan to create more posts.');
}
// Logic to create posts...
}
Subscribing to a plan
$user->subscribeTo('premium'); // 'premium' is defined in config/plan-craft.php
Implementation tips for AI agents
- Store plan definitions in
config/plan-craft.phpfor centralized, version-controlled plan management. - Use
hasFeature('feature-name')for simple boolean access andisEligible('action-name')for numeric limits. - Ensure the
plan_idandplan_detailscolumns are present in your billable model after runningmigrations.
Source: realrashid/plan-craft — distributed by TomeVault.