I'm trying to parse a date formated like :
2017-09-20T10:59:10.0000000 01:00
I'm using Carbon, so i tried :
Carbon::createFromFormat('Y-m-dTH:i:s.u vP', $date)
Which output :
The timezone could not be found in the database\n
Unexpected data found.\n
Data missing
I guess the last timezone argument maybe wrong but i couldn't find how to parse that date format :/
Thanks for help !