dev-master
9999999-devAdds new validation rules for comparing the value of integers and floats
MIT
The Requires
by Jared
v1.0
1.0.0.0Adds new validation rules for comparing the value of integers and floats
MIT
The Requires
by Jared
Wallogit.com
2017 © Pedro Peláez
Adds new validation rules for comparing the value of integers and floats
To get started, install the package through composer;, (*1)
composer require effectdigital/laravel-number-validation, (*2)
Now register the service provider in your config/app.php, (*3)
EffectDigital\LaravelNumberValidation\ValidatorServiceProvider::class,, (*4)
Lastly, create the validation messages for the new rules by adding the following lines to resources/lang/en/validation.php, (*5)
'gte' => 'The :attribute must be greater-than or equal to :other', 'gt' => 'The :attribute must be greater-than :other', 'lte' => 'The :attribute must be less-than or equal to :other', 'lt' => 'The :attribute must be less-than :other',
[
'range_start' => 'required|integer',
'range_end' => 'required|integer|gte:range_start',
]
// OR
[
'days' => 'required|integer|lte:7',
]
Adds new validation rules for comparing the value of integers and floats
MIT
Adds new validation rules for comparing the value of integers and floats
MIT