make app database

This commit is contained in:
Meghdad
2026-07-22 15:38:08 +03:30
parent 626a1e5373
commit 36b6bc544d
25 changed files with 1059 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace App\Domain\Loan\Enums;
enum WorkflowConfigurationStatus: string
{
case Draft = 'DRAFT';
case Published = 'PUBLISHED';
case Archived = 'ARCHIVED';
}