Austrian Insurance Number Rule
Validate the Austria Social Insurance Number
114k Downloads / Month
Open Source MIT License
114k Downloads / Month
Open Source MIT License
public Intervention\Validation\Rules\AustrianInsuranceNumber::__construct()
Checks for a valid austrian social insurance number.
use Illuminate\Support\Facades\Validator;
use Intervention\Validation\Rules\AustrianInsuranceNumber;
// validate GTIN
$validator = Validator::make($request->all(), [
'attribute-key' => new AustrianInsuranceNumber(),
]);
Edit