faicchia/laravel-iban-validation-rule

A Laravel rule around jschaedl/iban-validation

1.0.0 2022-07-09 21:54 UTC

This package is auto-updated.

Last update: 2024-05-10 03:39:46 UTC


README

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