Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
1234567891011121314151617 |
- <?php
-
- namespace App\Enums;
-
- use Filament\Support\Contracts\HasLabel;
-
- enum TaxComputation: string implements HasLabel
- {
- case Fixed = 'fixed';
- case Percentage = 'percentage';
- case Compound = 'compound';
-
- public function getLabel(): ?string
- {
- return $this->name;
- }
- }
|