Add event module
This commit is contained in:
parent
d692cf3bdf
commit
ae679641d7
|
@ -7,12 +7,14 @@ enum Module: string
|
|||
|
||||
case BILL = 'bill';
|
||||
case COURSE = 'course';
|
||||
case EVENT = 'event';
|
||||
|
||||
public function title(): string
|
||||
{
|
||||
return match ($this) {
|
||||
static::BILL => 'Zahlungs-Management',
|
||||
static::COURSE => 'Ausbildung',
|
||||
static::EVENT => 'Veranstaltungen',
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue