Validate dates with "now" or "yesterday" words

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.

$rules = [
'start_date' => 'after:tomorrow',
'end_date' => 'after:start_date'
];

Recent New Courses