I got a problem with validation rules with nested conditions.
class StoreRequest extends Request
{
public function authorize(){
return true;
}
public function rules(){
return [
'type_id' => 'required|integer',
'external_id' => 'required_if:type_id,==,3|integer',
];
}
}
Indeed I want to : - check the external_id only if the type_id equal to 3 - and check if it's an integer.
When I post my form, the rules works when I select a type_id equal to 3. But if I select another type_id, like 1 or 2, the validation does not pass :
The external_id must be an integer.
I try to add the nullable condition but required_if does not work anymore
Did you have any idea ?