validation.php 523 B

1234567891011
  1. <?php
  2. return [
  3. // VALIDATION
  4. 'required' => 'The ":attribute" field is required.',
  5. 'string' => 'The ":attribute" field must be a string.',
  6. 'regex' => 'The ":attribute" field must contain latin characters.',
  7. 'min' => 'The ":attribute" field must contain at least :min characters.',
  8. 'max' => 'The ":attribute" field may contain no more :max characters.',
  9. 'unique' => 'The ":attribute" already exists with this value ":input" in database.',
  10. 'required_to_delete' => 'Select items to delete.',
  11. ];