A Laravel rule around jschaedl/iban-validation.
composer require faicchia/laravel-iban-validation-rule
The package will automatically register itself.
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.
// in a `FormRequest`
use Faicchia\IbanValidation\Rules\Iban;
public function rules(): array
{
return [
'iban' => [new Iban()]
];
}