I am trying to get the current time and format it like:
"2018-09-26T21:40:29+02:00"
But when I try:
$isoDate = \Carbon\Carbon::now()->format('c');
as I understood passing a c
to format function will parse it to iso8601 but clearly thats not the case.
Any help on how to parse current time to ISO8601 OR 20181001T094006Z
echo Carbon::now()->toIso8601String();