feat: implement barangay and household management with associated tests

This commit is contained in:
Developer
2026-06-29 15:02:52 +08:00
parent 9ac2ea7bda
commit b85fc255cf
124 changed files with 2894 additions and 192 deletions

View File

@@ -8,10 +8,15 @@ use Spatie\ModelStates\StateConfig;
abstract class QrCodeState extends State
{
public const UNASSIGNED = 'unassigned';
public const ALLOCATED = 'allocated';
public const ACTIVE = 'active';
public const USED = 'used';
public const EXPIRED = 'expired';
public const VOIDED = 'voided';
public static function config(): StateConfig