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