PHP code example of waterdhavian / nova-calendar-tool

1. Go to this page and download the library: Download waterdhavian/nova-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/ */

    

waterdhavian / nova-calendar-tool example snippets

 artisan nova-calendar:export
 artisan nova-calendar:import

php artisan vendor:publish --provider='Waterdhavian\NovaCalendarTool\ToolServiceProvider' --tag="migrations"

php artisan migrate

// app/Providers/NovaServiceProvider.php

// ...

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

php artisan vendor:publish --provider="Spatie\GoogleCalendar\GoogleCalendarServiceProvider"