I have date data like this 2020-11-23T13:26:02.000Zand i want to conver to format Y-m-d h:i:s = 2020-11-23 13:26:02 using Carbon in Laravel
I have date data like this 2020-11-23T13:26:02.000Zand i want to conver to format Y-m-d h:i:s = 2020-11-23 13:26:02 using Carbon in Laravel
Hi
You can do sth like it and then get the date in "Y-m-d h:i:s" format
$date = new Carbon("2020-01-29T00:30:01.000Z");
/*
Carbon::__set_state(array(
'date' => "2020-01-29 00:30:01",
'timezone_type' => 2,
'timezone' => "Z",
))
*/
Use Carbon::parse:
$date = Carbon::parse('2020-11-23T13:26:02.000Z')->toDateTimeString();
dd($date); // 2020-11-23 13:26:02