yiisoft / validator

Yii validator library
https://www.yiiframework.com/
BSD 3-Clause "New" or "Revised" License
110 stars 36 forks source link

Add PHP attribute that set property label for usage in error messages. #633

Closed vjik closed 6 months ago

vjik commented 8 months ago

Example:

#[Required(message: 'The "{attribute}" field not found.')]
#[Label('User name')]
public readonly string $name,

Error will be The "User name" field not found..