EAN Rule
Validate European Article Numbers
114k Downloads / Month
Open Source MIT License
114k Downloads / Month
Open Source MIT License
public Intervention\Validation\Rules\Ean::__construct(?int $length = null)
Checks for a valid European Article Number.
Optional integer length (8 or 13) to check only for EAN-8 or EAN-13 or either one if not present.
use Intervention\Validation\Rules\Ean;
$validator = Validator::make($request->all(), [
'attribute-key' => new Ean(8),
]);
Edit