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ů.
12345678910111213141516 |
- <?php
-
- namespace App\Enums;
-
- use Filament\Support\Contracts\HasLabel;
-
- enum DiscountScope: string implements HasLabel
- {
- case Product = 'product';
- case Service = 'service';
-
- public function getLabel(): ?string
- {
- return translate($this->name);
- }
- }
|