Reputation: 3998
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 is 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.
Upvotes: 14
Views: 6570
Reputation: 163968
Try to use \T
like this:
'start_at' => 'required|date_format:Y-m-d\TH:i:s'
Upvotes: 18