You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
523 B
12 lines
523 B
<?php
|
|
return [
|
|
// VALIDATION
|
|
'required' => 'The ":attribute" field is required.',
|
|
'string' => 'The ":attribute" field must be a string.',
|
|
'regex' => 'The ":attribute" field must contain latin characters.',
|
|
'min' => 'The ":attribute" field must contain at least :min characters.',
|
|
'max' => 'The ":attribute" field may contain no more :max characters.',
|
|
'unique' => 'The ":attribute" already exists with this value ":input" in database.',
|
|
'required_to_delete' => 'Select items to delete.',
|
|
];
|