Answer the question
In order to leave comments, you need to log in
How to validate a date in Symfony so that it is not your current date?
The following json is sent to the server from the client:
{
"birthDate": "12.12.2023"
}
new Assert\Collection([
'birthDate' => [
new Assert\DateTime("d.m.Y"),
new Assert\LessThan(['value'=>'today', 'message'=>"Error!"]),
]
]);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question