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,
// ...
];
}