tony133/laravel-nova-full-calendar

Simple FullCalendar tool for Laravel Nova


Keywords
nova, laravel, full-calendar, calendar, fullcalendar, javascript, laravel-nova, laravel6, package-fullcalendar, php, tool, vue, vue2, vuejs, vuejs2
License
MIT

Documentation

LaravelNovaFullCalendar

Simple FullCalendar tool for Laravel Nova

Usage Package

You must register the tool with Nova. This is typically done in the tools method of the NovaServiceProvider, in app/Providers/NovaServiceProvider.php.

    use Tony133\NovaFullCalendar\NovaFullCalendar;
    // ....

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