Package Data | |
---|---|
Maintainer Username: | saeedsajadi |
Maintainer Contact: | saeed.sajadi@gmail.com (Saeed Sajadi) |
Package Create Date: | 2017-05-03 |
Package Last Update: | 2021-02-21 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-10-13 15:02:52 |
Package Statistics | |
---|---|
Total Downloads: | 433 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 4 |
Total Watchers: | 1 |
Total Forks: | 1 |
Total Open Issues: | 0 |
Extension for the Laravel validation class
You can install this package quick and easy with Composer.
Require the package via Composer:
$ composer require smart-twists/iranian-information-validator
The Validation class is built to work with the Laravel Framework. The integration is done in seconds.
Open your Laravel config file config/app.php
and add service provider in the $providers
array:
'providers' => array(
...
SmartTwists\IranianInformationValidation\ValidationServiceProvider::class,
),
The installed package provides the following additional validation rules
including their error messages.
Checks for a valid International Bank Account Number (IBAN).
The given field must be a valid creditcard number.
The field under validation must be a valid International Standard Book Number (ISBN).
The field under validation must be a valid date in ISO 8601 format.
The field under validation must be a valid national code.
The field under validation must be a valid zip code.
Add the corresponding key to /resources/lang/<language>/validation.php
like this:
// example
'iban' => 'Please enter IBAN number!',
Or add your custom messages directly to the validator like described in the docs.
Intervention Validation Class is licensed under the MIT License.