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.