PHPackages                             ko/laravel-fullcalendar - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. ko/laravel-fullcalendar

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

ko/laravel-fullcalendar
=======================

Laravel helper for FullCalendar.io

0.0.9(7y ago)0263[1 issues](https://github.com/peledies/ko-laravel-fullcalendar/issues)MITPHPPHP &gt;=5.6.0

Since Apr 27Pushed 7y ago2 watchersCompare

[ Source](https://github.com/peledies/ko-laravel-fullcalendar)[ Packagist](https://packagist.org/packages/ko/laravel-fullcalendar)[ RSS](/packages/ko-laravel-fullcalendar/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependenciesVersions (10)Used By (0)

[![](https://camo.githubusercontent.com/640c3d52b2764f179ef3cf089b604516a8c4ac0a06f055a46c6a7fce9428b787/68747470733a2f2f6c61726176656c2e636f6d2f6173736574732f696d672f636f6d706f6e656e74732f6c6f676f2d6c61726176656c2e737667)](https://camo.githubusercontent.com/640c3d52b2764f179ef3cf089b604516a8c4ac0a06f055a46c6a7fce9428b787/68747470733a2f2f6c61726176656c2e636f6d2f6173736574732f696d672f636f6d706f6e656e74732f6c6f676f2d6c61726176656c2e737667)

[![Build Status](https://camo.githubusercontent.com/c59043e0b28eab034f19dabc49c9222c43e3fbe5e0c6bc2837a5c0086132a211/68747470733a2f2f7472617669732d63692e6f72672f6c61726176656c2f6672616d65776f726b2e737667)](https://travis-ci.org/laravel/framework)[![Total Downloads](https://camo.githubusercontent.com/e93505dcc81f8750a8e183a5fb97dd1294daac165149280e29add0509258f4d0/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2f6672616d65776f726b2f642f746f74616c2e737667)](https://packagist.org/packages/laravel/framework)[![Latest Stable Version](https://camo.githubusercontent.com/c5ffcbe113dda06dd38a2844fa16a8a507540c32a89c6e4a737fbde2f1265ed0/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2f6672616d65776f726b2f762f737461626c652e737667)](https://packagist.org/packages/laravel/framework)[![License](https://camo.githubusercontent.com/f45d904953153ca304a2328243d2733e095eee13a631a1f390709885d41dd692/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2f6672616d65776f726b2f6c6963656e73652e737667)](https://packagist.org/packages/laravel/framework)

ko-laravel-fullcalendar
=======================

[](#ko-laravel-fullcalendar)

This package is a composer installable helper for working with fullcalendar.io in a laravel app.

Usage
-----

[](#usage)

### Building an `Event`

[](#building-an-event)

```
$event = new \KO\Fullcalendar\Event();
$event->build(['id'=>'asdf', 'title' => 'test', 'start' => '20-04-2018']);

```

### Adding an `Event` to an `EventCollection`

[](#adding-an-event-to-an-eventcollection)

```
$events = new \KO\Fullcalendar\EventCollection();
$events->push( $event );

```

### Custom options

[](#custom-options)

```
$options = new \KO\Fullcalendar\Options([
    'header' => [
        'right' => 'prev,next today',
        'center' => 'title',
        'left' => 'month,agendaWeek,agendaDay',
    ],
    'eventLimit' => true,
]);

```

### Instantiate a new `Calendar`

[](#instantiate-a-new-calendar)

```
$calendar = new \KO\Fullcalendar\Calendar();
$calendar->addEvents( $events );
$calendar->setOptions( $options );

```

### Draw the calendar

[](#draw-the-calendar)

In your blade, add the following where you would like the calendar to be drawn.

```
  {!! $calendar->html() !!}

```

CDN
---

[](#cdn)

This package has a helper method for building the appropriate `style` and `javascript` assets from a CDN. Just add the following to your html to load the appropriate resources.

Fullcalendar css

```
{!! $calendar->cdn('fullcalendar', 'css', '3.9.0') !!}

```

Fullcalendar js

```
{!! $calendar->cdn('fullcalendar', 'js', '3.9.0') !!}

```

Moment js

```
{!! $calendar->cdn('moment', 'js', '2.22.1') !!}

```

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 74.1% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~31 days

Recently: every ~62 days

Total

9

Last Release

2735d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1185267?v=4)[Deac Karns](/maintainers/peledies)[@peledies](https://github.com/peledies)

---

Top Contributors

[![sfp-deac](https://avatars.githubusercontent.com/u/38105740?v=4)](https://github.com/sfp-deac "sfp-deac (20 commits)")[![peledies](https://avatars.githubusercontent.com/u/1185267?v=4)](https://github.com/peledies "peledies (7 commits)")

### Embed Badge

![Health badge](/badges/ko-laravel-fullcalendar/health.svg)

```
[![Health](https://phpackages.com/badges/ko-laravel-fullcalendar/health.svg)](https://phpackages.com/packages/ko-laravel-fullcalendar)
```

###  Alternatives

[yepsua/filament-themes

Manage filament themes from the config files

3424.3k](/packages/yepsua-filament-themes)[kaufmanndigital/gdpr-cookieconsent

A ready-to-run package, that integrates an advanced cookie consent banner into your Neos CMS site.

2541.8k](/packages/kaufmanndigital-gdpr-cookieconsent)[digithis/activehelper

Active helper is a simple active state system for your links in laravel 4

163.0k](/packages/digithis-activehelper)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
