lms/app/Enums/PlanType.php
2025-12-15 12:26:23 +01:00

18 lines
265 B
PHP

<?php
namespace App\Enums;
enum PlanType: string
{
case FREE = 'free';
case PAID = 'paid';
public function getLabel(): string
{
return match ($this) {
self::FREE => 'Free',
self::PAID => 'Paid',
};
}
}