Reconciles tier docs with `PlanSeeder` reality (basic has price_threshold and score_alerts; schema is stripe_price_id_monthly + stripe_price_id_annual) and introduces the display-name layer from pricing-plan.md v2. - PlanTier::label() + Plan::displayName() + PlanFeatures::displayName() expose user-facing names (Free/Daily/Smart/Pro); backend identifiers stay basic/plus/pro so every call site, Stripe mapping, and test keeps working. - push.frequency key added to features JSON (none/daily/triggered), mirroring email.frequency so Daily's daily push is distinguishable from Smart/Pro's triggered push. Seeder, factory, free-tier stubs, and Filament form updated. - Homepage pricing cards renamed: Basic→Daily, Plus→Smart; badge "Most Popular"→"Most pick this"; CTAs refreshed. - docs/tiers.md change log records the full diff. Fleet tier, 14-day trial copy, and Smart dark-card treatment deferred. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
98 lines
3.3 KiB
PHP
98 lines
3.3 KiB
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Enums\PlanTier;
|
|
use App\Models\Plan;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends Factory<Plan>
|
|
*/
|
|
class PlanFactory extends Factory
|
|
{
|
|
private static array $defaultFeatures = [
|
|
'fuel_types' => ['max' => 1],
|
|
'email' => ['enabled' => false, 'frequency' => 'weekly_digest'],
|
|
'push' => ['enabled' => false, 'frequency' => 'none'],
|
|
'whatsapp' => ['enabled' => false, 'daily_limit' => 0, 'scheduled_updates' => 0],
|
|
'sms' => ['enabled' => false, 'daily_limit' => 0],
|
|
'ai_predictions' => false,
|
|
'price_threshold' => false,
|
|
'score_alerts' => false,
|
|
];
|
|
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'name' => PlanTier::Free->value,
|
|
'stripe_price_id' => null,
|
|
'features' => self::$defaultFeatures,
|
|
'active' => true,
|
|
];
|
|
}
|
|
|
|
public function free(): static
|
|
{
|
|
return $this->state(fn () => [
|
|
'name' => PlanTier::Free->value,
|
|
'stripe_price_id' => null,
|
|
'features' => self::$defaultFeatures,
|
|
]);
|
|
}
|
|
|
|
public function basic(): static
|
|
{
|
|
return $this->state(fn () => [
|
|
'name' => PlanTier::Basic->value,
|
|
'stripe_price_id' => 'price_basic_test',
|
|
'features' => [
|
|
'fuel_types' => ['max' => 1],
|
|
'email' => ['enabled' => true, 'frequency' => 'daily'],
|
|
'push' => ['enabled' => true, 'frequency' => 'daily'],
|
|
'whatsapp' => ['enabled' => true, 'daily_limit' => 5, 'scheduled_updates' => 2],
|
|
'sms' => ['enabled' => false, 'daily_limit' => 0],
|
|
'ai_predictions' => false,
|
|
'price_threshold' => true,
|
|
'score_alerts' => true,
|
|
],
|
|
]);
|
|
}
|
|
|
|
public function plus(): static
|
|
{
|
|
return $this->state(fn () => [
|
|
'name' => PlanTier::Plus->value,
|
|
'stripe_price_id' => 'price_plus_test',
|
|
'features' => [
|
|
'fuel_types' => ['max' => 1],
|
|
'email' => ['enabled' => true, 'frequency' => 'triggered'],
|
|
'push' => ['enabled' => true, 'frequency' => 'triggered'],
|
|
'whatsapp' => ['enabled' => true, 'daily_limit' => 5, 'scheduled_updates' => 2],
|
|
'sms' => ['enabled' => true, 'daily_limit' => 1],
|
|
'ai_predictions' => true,
|
|
'price_threshold' => true,
|
|
'score_alerts' => true,
|
|
],
|
|
]);
|
|
}
|
|
|
|
public function pro(): static
|
|
{
|
|
return $this->state(fn () => [
|
|
'name' => PlanTier::Pro->value,
|
|
'stripe_price_id' => 'price_pro_test',
|
|
'features' => [
|
|
'fuel_types' => ['max' => null],
|
|
'email' => ['enabled' => true, 'frequency' => 'triggered'],
|
|
'push' => ['enabled' => true, 'frequency' => 'triggered'],
|
|
'whatsapp' => ['enabled' => true, 'daily_limit' => 5, 'scheduled_updates' => 2],
|
|
'sms' => ['enabled' => true, 'daily_limit' => 3],
|
|
'ai_predictions' => true,
|
|
'price_threshold' => true,
|
|
'score_alerts' => true,
|
|
],
|
|
]);
|
|
}
|
|
}
|