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

DiscountComputation.php 271B

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