You can validate dates by rules before/after and passing various strings as a parameter, like: tomorrow
, now
, yesterday
. Example: 'start_date' => 'after:now'
. It's using strtotime() under the hood.
1$rules = [2 'start_date' => 'after:tomorrow',3 'end_date' => 'after:start_date'4];