選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

AdjustmentScope.php 225B

1234567891011121314
  1. <?php
  2. namespace App\Enums\Accounting;
  3. enum AdjustmentScope: string
  4. {
  5. case Product = 'product';
  6. case Service = 'service';
  7. public function getLabel(): ?string
  8. {
  9. return translate($this->name);
  10. }
  11. }