faicchia / laravel-iban-validation-rule
A Laravel rule around jschaedl/iban-validation
1.0.0
2022-07-09 21:54 UTC
Requires
- php: ^8.0
- illuminate/support: ^9.19
- jschaedl/iban-validation: ^1.8
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.8
- orchestra/testbench: ^7.6
- pestphp/pest: ^1.21
README
A Laravel rule around jschaedl/iban-validation.
Installation
composer require faicchia/laravel-iban-validation-rule
The package will automatically register itself.
Translations
If you wish to edit the package translations, you can run the following command to publish them into your resources/lang
folder:
php artisan vendor:publish --provider="Faicchia\IbanValidation\IbanValidationRuleServiceProvider"
English and Italian translations are already shipped with the package.
Usage
// in a `FormRequest` use Faicchia\IbanValidation\Rules\Iban; public function rules(): array { return [ 'iban' => [new Iban()] ]; }