That will give you a collection of the 'start_date' properties of your events.
If you make sure to 'tell Laravel' to interpret them as dates in you Event.php model, the 'start_date' property will automatically be converted into a Carbon instance.
Now your $formattedDates will contain a collection of dates that follow the appropriate format.
If you want to convert it to an array, just chain ->toArray():