Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

darvems's avatar

The email validation rule, like nearly all the built-in rules, is available in Laravel's Illuminate\Validation\Validator class (in 4.2 at least).

yashpokar's avatar

$validation = Validator::make($request, [ 'percent.*' => 'type whatever rule you want to apply for' ]);

replace * by index or assigned key for validate individually

Previous

Please or to participate in this conversation.