dress/app/Enums/SalaryAdjustmentType.php

18 lines
297 B
PHP

<?php
namespace App\Enums;
enum SalaryAdjustmentType: string
{
case BONUS = 'bonus';
case DEDUCTION = 'deduction';
public function label(): string
{
return match ($this) {
self::BONUS => 'Bonus',
self::DEDUCTION => 'Potongan',
};
}
}