mraiur / laravel-mgoogle
Installs: 22
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:facade
Requires
- mraiur/google: dev-master
This package is not auto-updated.
Last update: 2025-03-29 20:53:46 UTC
README
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 :