EAN Rule

Validate European Article Numbers

132k Downloads / Month

Open Source MIT License

You are viewing the documentation for Intervention Validation 3, this version has reached end of life (EOL). Please consider upgrading to version 4.

public Intervention\Validation\Rules\Ean::__construct(?int $length = null)

Checks for a valid European Article Number.

Parameters

length (optional)

Optional integer length (8 or 13) to check only for EAN-8 or EAN-13 or either one if not present.

Example

use Intervention\Validation\Rules\Ean;

$validator = Validator::make($request->all(), [
    'attribute-key' => new Ean(8),
]);
Edit