laravel-mgoogle maintained by mraiur
Author
Last update
2015/07/12 01:39
(dev-master)
License
Downloads
22
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 :