How can I edit or delete data in google calendar event description?
I'm using Laravel with Google Calendar (i.e., a spatie package). When I update an event description, it overwrites the entire content, but I only need to change a part of the data.
I currently get the data from a form and add it to a variable like this:
$variable = [
"Name: " . $name . "<br/>" .
"Product: " . $product . "<br/>
];
$event->description = $variable;
$event->save();
After I save it in the Google Calendar, I would like to change only "Name", for example, is it possible?