Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

27 lignes
555B

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\ViewModels;
  4. class JobTypeViewModel
  5. {
  6. public string $title = 'Job Types';
  7. public bool $saved = false;
  8. public bool $deleted = false;
  9. public array $form = [
  10. 'name' => '',
  11. 'attributes' => [],
  12. ];
  13. /** @var array<string, list<string>> */
  14. public array $errors = [];
  15. /** @var array<string, mixed>|null */
  16. public ?array $jobType = null;
  17. /** @var list<array{id: int, name: string, attributes: array}> */
  18. public array $customerTypes = [];
  19. }

Powered by TurnKey Linux.