trypost/app/Enums/User/Persona.php
Paulo Castellano ea2d3d86c8 feat(onboarding): add Marketer and Online store personas
Completes the persona grid to a 3x3 with two high-value segments:
Marketer (in-house marketing / social media, a scheduling tool's core user)
and Online store (e-commerce). Labels in all three locales, with
IconSpeakerphone and IconShoppingBag glyphs. Other stays last.
2026-06-24 09:31:33 -03:00

18 lines
383 B
PHP

<?php
declare(strict_types=1);
namespace App\Enums\User;
enum Persona: string
{
case Creator = 'creator';
case Freelancer = 'freelancer';
case Developer = 'developer';
case Startup = 'startup';
case Agency = 'agency';
case SmallBusiness = 'small_business';
case Marketer = 'marketer';
case OnlineStore = 'online_store';
case Other = 'other';
}