Looking to hire Laravel developers? Try LaraJobs

laravel-mgoogle maintained by mraiur

Last update
2015/07/12 01:39 (dev-master)
License
Downloads
22

Comments
comments powered by Disqus

mgoogle

Laravel wrapper for MGoogle package.

Setup:

Add to your providers array in config/app.php

    MGoogleLaravel\MGoogleServiceProvider::class,

Run vendor:publish to generate the app/mgoogle.php configuration file.

    php artisan vendor:publish

This package simplifies the Google API usage to:

    $MGAPI = new MGAPI();
    if( $MGAPI ) {
        $CalendarAPI = $MGAPI->calendar();
        $calendars = $CalendarAPI->getCalendars();
    }

More in :

Project page MGoogle Package