|
- <?php
-
- declare(strict_types=1);
-
- namespace App\ViewModels;
-
- class CustomerTypeViewModel
- {
- public string $title = 'Customer Types';
- public bool $saved = false;
- public bool $deleted = false;
-
- /** @var array{name: string, attributes: list<array{name: string, type: string}>} */
- public array $form = [
- 'name' => '',
- 'attributes' => [],
- ];
-
- /** @var array<string, list<string>> */
- public array $errors = [];
-
- /** @var array<string, mixed>|null */
- public ?array $customerType = null;
- }
|