828 0 0 0
Last Updated : 2025-04-28 22:00:31
In this snippet I will teach you how to validate the date to be equal or after today with localization
First, you must validate the start date using after_or_equal validation rule like this
$rules = [
'add_item_start_date' => 'required|date|after_or_equal:today',
'add_item_end_date' => 'required|date|after:add_item_start_date',
];
Then at the lang/validation.php insert this values
'values' => [
'add_item_start_date' => [
'today' => '???
Read Also