Synchronize database data with google calendar

-1

I have a task table where you have: start date, start time, end date and end time, also the task that must be done with a description.

Now implement a google calendar and what I want to do that I can not do, is to reflect those tasks in that calendar.

I forgot to clarify, I'm using the Laravel framework.

    
asked by Juan Pablo B 07.11.2016 в 17:29
source

1 answer

1

You have two options, Javascript from the client side or PHP if you want to do it from the server.

In both cases is to perform a POST to your API to insert an event, here below you have a link to the official documentation.

link

    
answered by 08.11.2016 / 09:27
source