PHP code example of coroowicaksono / nova-fullcalendar

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

    

coroowicaksono / nova-fullcalendar example snippets


// app/Providers/NovaServiceProvider
protected function cards()
{
    $events = Event::select(DB::raw('id, nama_kegiatan as title, concat(tanggal_acara, " ", jam_acara) as date, concat(tanggal_acara, " ", jam_acara) as start, tanggal_acara as end'))
        ->get()
        ->toJson();
    
    return [
        (new FullCalendar())
            ->series($events)
    ];
}