Skip to content

faicchia/laravel-iban-validation-rule

Repository files navigation

Laravel Iban Validation Rule

Packagist Tests Style License

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()]
    ];
}