I want to give a validation rule for card information, required if number_of_guests field value greater then or equal to 15
$rules = [ 'number_of_guests' => 'numeric|required|max:100', 'card_information' => 'required_if:number_of_guests,>=15' ];
card_information will required if number_of_guests field value greater then or equal to 15
New contributor
Apou datta is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.