Skip to content
Advertisement

How to create custom validation rule for dependent input fields in laravel

In my input form, I have two fields; momentFrom & momentTo. I need to put a validation which gives error message if any of the following criteria fails.

  • momentFrom is greater than or equal to momentTo.
  • momentFrom is less than now.

My code for storing the data:

JavaScript

I have seen laravel custom validation rules where only one field can be validated at a time. But in my scenario I need to check both fields at a time depending on each other. How can I achieve this?

Thanks for any help in advance!

Advertisement

Answer

At last, I have solved this problem using FormRequest and AppServiceProvider. Thought this would help others who come to this place.

First I have created FormRequest validator using following artisan command.

JavaScript

Then added primary validation rules and messages into it.

JavaScript

Then inside appProvidersAppServiceProvider, added the extra validation logic.

JavaScript

My Controller:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement