feat: per-workspace pricing, onboarding, and billing overhaul
Pricing
- Bill per workspace ($12/mo or $120/yr each); Stripe quantity tracks the
workspace count and syncs on workspace create/delete.
- 2,500 AI credits per workspace, pooled at the account level; monthly reset
on the billing anniversary, annual granted upfront (no rollover).
- One social account per network per workspace; remove all count-based limits
(workspace/social/member) and the legacy plan tiers (single Workspace plan).
Onboarding (cloud only: SELF_HOSTED=false + PostHog)
- Replace the /subscribe plan picker with /onboarding persona selection
(Creator/Freelancer/Startup/Agency/Small business/Other), saved on the user
(users.persona) and mirrored to PostHog, then Stripe Checkout on the monthly
price. 8-day trial so Stripe displays 7.
Billing screen
- Remove the Change Plan dialog (dead with a single plan); add an annual-upgrade
banner for monthly subscribers (swapToYearly).
- Current-plan card shows the workspace count instead of the plan name.
System AI
- Brand analyzer / workspace autofill is always allowed and never debits credits
(system feature, not the user's usage).
Self-hosted (SELF_HOSTED=true) bypasses all billing, credit, limit, network,
and onboarding logic.
2026-06-21 23:40:03 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2026-06-22 12:26:31 +00:00
|
|
|
use App\Actions\User\CreateUser;
|
|
|
|
|
|
feat: per-workspace pricing, onboarding, and billing overhaul
Pricing
- Bill per workspace ($12/mo or $120/yr each); Stripe quantity tracks the
workspace count and syncs on workspace create/delete.
- 2,500 AI credits per workspace, pooled at the account level; monthly reset
on the billing anniversary, annual granted upfront (no rollover).
- One social account per network per workspace; remove all count-based limits
(workspace/social/member) and the legacy plan tiers (single Workspace plan).
Onboarding (cloud only: SELF_HOSTED=false + PostHog)
- Replace the /subscribe plan picker with /onboarding persona selection
(Creator/Freelancer/Startup/Agency/Small business/Other), saved on the user
(users.persona) and mirrored to PostHog, then Stripe Checkout on the monthly
price. 8-day trial so Stripe displays 7.
Billing screen
- Remove the Change Plan dialog (dead with a single plan); add an annual-upgrade
banner for monthly subscribers (swapToYearly).
- Current-plan card shows the workspace count instead of the plan name.
System AI
- Brand analyzer / workspace autofill is always allowed and never debits credits
(system feature, not the user's usage).
Self-hosted (SELF_HOSTED=true) bypasses all billing, credit, limit, network,
and onboarding logic.
2026-06-21 23:40:03 +00:00
|
|
|
test('the default trial length is 8 days', function () {
|
|
|
|
|
expect(config('cashier.trial_days'))->toBe(8);
|
|
|
|
|
});
|
2026-06-22 12:26:31 +00:00
|
|
|
|
2026-08-08 00:25:32 +00:00
|
|
|
test('allow_promotion_codes defaults to false for saas recipe A', function () {
|
|
|
|
|
expect(config('cashier.allow_promotion_codes'))->toBeFalse();
|
|
|
|
|
});
|
|
|
|
|
|
2026-06-22 12:26:31 +00:00
|
|
|
test('signup grants a trial of cashier.trial_days in no-card mode', function () {
|
|
|
|
|
config(['trypost.billing.require_card_for_trial' => false]);
|
|
|
|
|
|
|
|
|
|
$user = CreateUser::execute([
|
|
|
|
|
'name' => 'Trial User',
|
|
|
|
|
'email' => 'trial@example.com',
|
|
|
|
|
'password' => 'secret123',
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
expect($user->account->trial_ends_at->toDateString())
|
|
|
|
|
->toBe(now()->addDays(config('cashier.trial_days'))->toDateString());
|
|
|
|
|
});
|