I have the following Iso8601 date-time string 2018-03-12T10:34:15-0200
and after I parse it
Carbon::parse("2018-03-21T10:34:15-0200", 'UTC')
and save it to mysql db datetime
column I have 2018-03-21 10:34:15
so I've lost the -0200
hours difference with UTC timezone.
Any ideas how to solve it the right way?