I am trying to create error messages without having to hardcode into custom array of validation.php the preferable attributes names. For example let's say I have used camel case names for my forms input fields. I could use a helper method to transform camel case to title type attributes instead of hardcoding all of them in custom array like:
'camelCase' => 'Camel Case'
How could I use that helper method for all :attributes of error messages?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community