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

18 lines
345 B
PHP

<?php
namespace App\Enums;
enum TeachingType: string
{
case ADMINISTRATIVE = 'administrative';
case COLLABORATIVE = 'collaborative';
public function getLabel(): string
{
return match ($this) {
self::ADMINISTRATIVE => 'Administrative',
self::COLLABORATIVE => 'Collaborative',
};
}
}