Sorry, no results were found for this search.

IBAN Rule

Validate International Bank Account Numbers

167k Downloads / Month

Open Source MIT License

Validate International Bank Account Numbers (IBAN) in Laravel with Intervention Validation. Banking checks.

public Intervention\Validation\Rules\Iban::__construct()

Checks for a valid International Bank Account Number (IBAN).

Parameters

none

Example

use Illuminate\Support\Facades\Validator;
use Intervention\Validation\Rules\Iban;

$validator = Validator::make($request->all(), [
    'attribute-key' => new Iban(),
]);
Edit