EAN Rule

Validate European Article Numbers

96k Downloads / Month

Open Source MIT License

public Intervention\Validation\Rules\Ean::__construct(array $lengths = [8, 13])

Checks for a valid European Article Number.

Parameters

lengths (optional)

Optional array of allowed lengths (8 or 13) to check only for EAN-8 or EAN-13 or both.

Example

use Intervention\Validation\Rules\Ean;

$validator = Validator::make($request->all(), [
    'attribute-key' => new Ean(),
]);
use Intervention\Validation\Rules\Ean;

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