Skip to content
Advertisement

Laravel Validation- depends on the value of another input field

I have 2 fields status and releaseYear and productionYear. I have to put the validation that :

JavaScript

How do i put the following validations: If status is set to Released, then Year of Production and Year of Release should not be greater than this year.

If status is set to Un-Released, then Year of Production should not be greater than one year from this year

Advertisement

Answer

You can try custom validation like below. I have not tested, hope this will give you an idea.

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