BIC Rule
Validate a Business Identifier Code
128k Downloads / Month
Open Source MIT License
128k Downloads / Month
Open Source MIT License
Learn how to validate Business Identifier codes with the additional validation rules of Intervention Validation for your Laravel application.
public Intervention\Validation\Rules\Bic::__construct()
Checks if 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(), ]);