How to validate optional values in codeigniter 4
for example conditions
- If one field is filled by user which is an optional
- If one field is left empty by user which is an optional
how should I validate in first condition
This is my model code where I want phone field to be optional
'create' => [
'message' => 'required|alpha_numeric_punct|max_length[10000]',
'name' => 'required|alpha_space',
'email' => 'required|valid_email',
'phone' => 'alpha_numeric_punct',
'status' => 'required|integer',
],