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).
$validation = Validator::make($request, [
'percent.*' => 'type whatever rule you want to apply for'
]);
replace * by index or assigned key for validate individually
Please or to participate in this conversation.