Date Compare in validation Laravel 5.2
问题 I want to compare two date in validation. I mean the user will input start date and end date .I want to verify the start date, it can't be yesterday . And end date will not be before day of start date. Please guide me in laravel validation. 回答1: I would suggest you to make your custom validation for dates, Place the following function in your App\Providers\ValidationServiceProvider class boot() method //end date must be equal to value or greate than value Validator::extend('dateequalorearlier