Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

DocumentPriceColumn.php 333B

12345678910111213141516171819
  1. <?php
  2. namespace App\Enums;
  3. use Filament\Support\Contracts\HasLabel;
  4. enum DocumentPriceColumn: string implements HasLabel
  5. {
  6. case Price = 'price';
  7. case Rate = 'rate';
  8. case Other = 'other';
  9. public const DEFAULT = self::Price->value;
  10. public function getLabel(): ?string
  11. {
  12. return $this->name;
  13. }
  14. }