<?php
namespace App\Models\Enums;
enum GrowthPetStateEnum: string
{
case UPBRINGING = 'UPBRINGING';
case BAG = 'BAG';
case SAFEBOX = 'SAFEBOX';
}