What happens if you need to update the event?
Good question. That should be possible, but I wasn't checking it so much. Maybe tip for future article :)
If you want to update event you should always increase sequence in ics file. It's quite simple with Spatie lib, you just need to add the following to your event object:
$event->appendProperty(TextProperty::create('SEQUENCE', sequence_value));
initial: sequence_value = 0, first update: sequence_value = 1 ..... nth update: sequence_value = n
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
What happens if you need to update the event?
Good question. That should be possible, but I wasn't checking it so much. Maybe tip for future article :)
If you want to update event you should always increase sequence in ics file.
It's quite simple with Spatie lib, you just need to add the following to your event object:
$event->appendProperty(TextProperty::create('SEQUENCE', sequence_value));initial: sequence_value = 0,first update: sequence_value = 1
.....
nth update: sequence_value = n