11 lines
207 B
PHP
11 lines
207 B
PHP
<?php
|
|
|
|
namespace Modules\ClientCreateForm\Http\Livewire;
|
|
class FormStatus
|
|
{
|
|
const NEW = 1;
|
|
const IN_PROCESS = 2;
|
|
const ERROR = 3;
|
|
const SUCCESS = 4;
|
|
const READY = 5;
|
|
} |