BIC Rule
Validate a Business Identifier Code
88k Downloads / Month
Open Source MIT License
88k Downloads / Month
Open Source MIT License
public Intervention\Validation\Rules\Bic::__construct()
Checks if field under validation is a valid Business Identifier Code (BIC).
none
use Intervention\Validation\Rules\Bic;
$validator = Validator::make($request->all(), [
'attribute-key' => new Bic(),
]);
Edit