I'm building an API and it should accept date and time value as the format of Y-m-dTH:i:s
. The specialty of this that there's T
in the middle between date and time.
So, how to write validation rule to check this ?
'start_at' => 'required|date_format:Y-m-d H:i:s'
This is what I currently have.
Try to use \T
like this:
'start_at' => 'required|date_format:Y-m-d\TH:i:s'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With