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.
18 lines
383 B
PHP
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';
|
|
}
|