BIC Rule
Validate a Business Identifier Code
155k Downloads / Month
Open Source MIT License
155k Downloads / Month
Open Source MIT License
Validate Business Identifier Codes (BIC/SWIFT) in Laravel with Intervention Validation. Banking code validation.
public Intervention\Validation\Rules\Bic::__construct()
Checks if the field under validation is a valid Business Identifier Code (BIC).
none
use Illuminate\Support\Facades\Validator; use Intervention\Validation\Rules\Bic; $validator = Validator::make($request->all(), [ 'attribute-key' => new Bic(), ]);