Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

LineItemPreviewDTO.php 1022B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace App\DTO;
  3. readonly class LineItemPreviewDTO extends LineItemDTO
  4. {
  5. public static function fakeItems(): array
  6. {
  7. return [
  8. new self(
  9. name: 'Item 1',
  10. description: 'Sample item description',
  11. quantity: 2,
  12. unitPrice: self::formatToMoney(150.00, null),
  13. subtotal: self::formatToMoney(300.00, null),
  14. ),
  15. new self(
  16. name: 'Item 2',
  17. description: 'Another sample item description',
  18. quantity: 3,
  19. unitPrice: self::formatToMoney(200.00, null),
  20. subtotal: self::formatToMoney(600.00, null),
  21. ),
  22. new self(
  23. name: 'Item 3',
  24. description: 'Yet another sample item description',
  25. quantity: 1,
  26. unitPrice: self::formatToMoney(180.00, null),
  27. subtotal: self::formatToMoney(180.00, null),
  28. ),
  29. ];
  30. }
  31. }