Validate the date field to be greater than x days from now.
Right now I have this snippet that checks if the date is greater than now.
planned_date: Joi.date().greater('now').required()
But I want to validate that the planned_date is at least 2 days more than now.
This could be possible combining with moment.js, but couldn't get it working.