Laravel Parse String à ce jour

$myDate = '12/08/2020';

$date = Carbon::createFromFormat('m/d/Y', $myDate)->format('Y/m/d');
Mirik