IBAN Rule
Validate International Bank Account Numbers
135k Downloads / Month
Open Source MIT License
135k Downloads / Month
Open Source MIT License
Explore how to validate International Bank Account Numbers (IBAN) with the additional validation rules of Intervention Validation for your Laravel application.
public Intervention\Validation\Rules\Iban::__construct()
Checks for a valid International Bank Account Number (IBAN).
none
use Illuminate\Support\Facades\Validator; use Intervention\Validation\Rules\Iban; $validator = Validator::make($request->all(), [ 'attribute-key' => new Iban(), ]);