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

CreditNoteStatus.php 212B

123456789101112
  1. <?php
  2. namespace App\Enums\Accounting;
  3. enum CreditNoteStatus: string
  4. {
  5. case Draft = 'draft';
  6. case Open = 'open';
  7. case Closed = 'closed';
  8. case Applied = 'applied';
  9. case Partial = 'partial';
  10. }