I am trying to convert a name from snake case to camel case. Are there any built-in methods?
Eg: "app_user"
to "AppUser"
(I have a string "app_user"
I want to convert that to model AppUser
).
I am trying to convert a name from snake case to camel case. Are there any built-in methods?
Eg: "app_user"
to "AppUser"
(I have a string "app_user"
I want to convert that to model AppUser
).