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

RecordsPerPage.php 422B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Enums;
  3. use App\Enums\Concerns\Utilities;
  4. use Filament\Support\Contracts\HasLabel;
  5. enum RecordsPerPage: int implements HasLabel
  6. {
  7. use Utilities;
  8. case Five = 5;
  9. case Ten = 10;
  10. case TwentyFive = 25;
  11. case Fifty = 50;
  12. case OneHundred = 100;
  13. public const DEFAULT = self::Ten->value;
  14. public function getLabel(): ?string
  15. {
  16. return (string) $this->value;
  17. }
  18. }