So I have an array of data (not necessary coming from a $request)
$validator = Validator::make($array, [
'*.client_name' => 'required',
'*.client_phone' => ['required ', 'regex:/^(0)(5|6|7)[0-9]{8}/'],
]);
$validator->validate();
So far, validation messages shows as
The field 1.client_name is required
I want something like
Row 1 : The field client_name is required
If I use $validator->setAttributeNames($newAttributeNames);
I lose row number from the wildcard(*) even if I set teh wildcard in the new attribute name.
Also note that I don't want to override messages of all the rules provided by laravel (here are 2 examples but irl I have many rules)
So any idea how to accomplish this ?
The best approach I could find so far is inspired from @Tim Welis answer but using loops instead
The rule message is written only once for all the attributes