| 1234567891011 |
- <?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.',
- ];
|