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

TaxComputation.php 298B

1234567891011121314151617
  1. <?php
  2. namespace App\Enums;
  3. use Filament\Support\Contracts\HasLabel;
  4. enum TaxComputation: string implements HasLabel
  5. {
  6. case Fixed = 'fixed';
  7. case Percentage = 'percentage';
  8. case Compound = 'compound';
  9. public function getLabel(): ?string
  10. {
  11. return $this->name;
  12. }
  13. }