Merge branch '9.x'

# Conflicts:
#	CHANGELOG.md
This commit is contained in:
Dries Vints 2023-01-23 19:27:45 +01:00
commit d0c8f49427
No known key found for this signature in database
2 changed files with 7 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Release Notes
## [Unreleased](https://github.com/laravel/laravel/compare/v9.5.0...master)
## [Unreleased](https://github.com/laravel/laravel/compare/v9.5.1...master)
## [v10.0.0 (2022-02-07)](https://github.com/laravel/laravel/compare/v9.5.0...master)
## [v10.0.0 (2022-02-07)](https://github.com/laravel/laravel/compare/v9.5.1...master)
Laravel 10 includes a variety of changes to the application skeleton. Please consult the diff to see what's new.

View File

@ -103,6 +103,11 @@
'string' => 'The :attribute must be at least :min characters.',
],
'min_digits' => 'The :attribute must have at least :min digits.',
'missing' => 'The :attribute field must be missing.',
'missing_if' => 'The :attribute field must be missing when :other is :value.',
'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
'missing_with' => 'The :attribute field must be missing when :values is present.',
'missing_with_all' => 'The :attribute field must be missing when :values are present.',
'multiple_of' => 'The :attribute must be a multiple of :value.',
'not_in' => 'The selected :attribute is invalid.',
'not_regex' => 'The :attribute format is invalid.',