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>
85 lines
3.7 KiB
PHP
85 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Enums\PlanTier;
|
|
use App\Models\Plan;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class PlanSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
$plans = [
|
|
PlanTier::Free->value => [
|
|
'stripe_price_id_monthly' => null,
|
|
'stripe_price_id_annual' => null,
|
|
'features' => [
|
|
'fuel_types' => ['max' => 1],
|
|
'email' => ['enabled' => true, '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,
|
|
],
|
|
],
|
|
PlanTier::Basic->value => [
|
|
'stripe_price_id_monthly' => config('services.stripe.prices.basic.monthly'),
|
|
'stripe_price_id_annual' => config('services.stripe.prices.basic.annual'),
|
|
'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,
|
|
],
|
|
],
|
|
PlanTier::Plus->value => [
|
|
'stripe_price_id_monthly' => config('services.stripe.prices.plus.monthly'),
|
|
'stripe_price_id_annual' => config('services.stripe.prices.plus.annual'),
|
|
'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,
|
|
],
|
|
],
|
|
PlanTier::Pro->value => [
|
|
'stripe_price_id_monthly' => config('services.stripe.prices.pro.monthly'),
|
|
'stripe_price_id_annual' => config('services.stripe.prices.pro.annual'),
|
|
'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,
|
|
],
|
|
],
|
|
];
|
|
|
|
foreach ($plans as $name => $data) {
|
|
Plan::updateOrCreate(
|
|
['name' => $name],
|
|
[
|
|
'stripe_price_id_monthly' => $data['stripe_price_id_monthly'],
|
|
'stripe_price_id_annual' => $data['stripe_price_id_annual'],
|
|
'features' => $data['features'],
|
|
'active' => true,
|
|
]
|
|
);
|
|
}
|
|
}
|
|
}
|