mspconcepts/ddscalendar

There is no license information available for the latest version (1.1.1) of this package.

calendar

1.1.1 2017-07-06 10:27 UTC

This package is not auto-updated.

Last update: 2024-04-09 18:38:49 UTC


README

1) composer require mspconcepts/ddscalendar
2) Add service provider in config/app.php 
        MspPack\DDSCalendar\DDSCalendarServiceProvider::class,
3) php artisan vendor:publish
4) php artisan migrate

This will publish file called laravel-google-calendar.php in your config-directory with this contents:

<?php

return [

    /**
     * Path to a json file containing the credentials of a Google Service account.
     */
    'client_secret_json' => storage_path('app/laravel-google-calendar/client_secret.json'),

    /**
     *  The id of the Google Calendar that will be used by default.
     */
    'calendar_id' => '',

];

Read this blogpost to learn how to get the correct values for client_secret_json and calendar_id.

Now go to ==> http://<YOUR DOMAIN>/admin/calendar