I'm using Ardent in my Laravel project because I love its awesome model validation feature. Now I need to set human understandable attribute values in the validation error messages. I read that it can be accomplished by setting the $attributes array in the validation.php file (lang folder).
Since I'm coming from Yii I wonder if there is a way to specify the attribute name on a model basis and not globally in validation.php lang file.
For example, if I have two models, Employee and Company, both with a "name" attribute, I would like to set the display value of "name" attribute to "Employee name" and "Company name" respectively.