Is there a way to make Laravel automatically put enums into a subfolder of 'app' when using php artisan make:enum? It’s one of those convenience things I’d like to figure out so I do not always need to specify the folder when making an enum – or moving them when I forget!
AFAIK, no. However, the command will automatically create Enum classes in app/Enums or app/Enumerations if one of those directories already exists; so you either can create the directory before making any Enum classes, or specify the namespace whenever making the first Enum class, e..g.