Laravel Google Calendar package

A Laravel Nova tool that provides an interface with Google Calendar.

Installation

You can install the package via composer:

composer require gterrusa/laravel-nova-google-calendar

You can publish the config file with:

php artisan vendor:publish --provider="GTerrusa\LaravelNovaGoogleCalendar\ToolServiceProvider"

This is the contents of the published config file:

return [
    'user_admin_boolean' => null
];

Setup

  1. Follow the setup steps here
  2. Include the tool in your NovaServiceProvider

    ...
    use GTerrusa\LaravelNovaGoogleCalendar\LaravelNovaGoogleCalendar;
    
    ...

    public function tools()
    {
        return [
            ...,
            new LaravelNovaGoogleCalendar()
        ];
    }

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

GitHub

View Github