PHP code example of nicolaeum / nova-lite-calendar-tool

1. Go to this page and download the library: Download nicolaeum/nova-lite-calendar-tool library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

nicolaeum / nova-lite-calendar-tool example snippets


php artisan vendor:publish --provider='nicolaeum\NovaCalendarTool\ToolServiceProvider' --tag="config"

// app/Providers/NovaServiceProvider.php

// ...

public function tools()
{
    return [
        // ...
        new \nicolaeum\NovaCalendarTool\NovaCalendarTool,
    ];
}