PHPackages                             bbcreation/calendar - 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. bbcreation/calendar

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

bbcreation/calendar
===================

Best Calendar Library to Render Fancy Gantt Events with Laravel 5 Compatibility

08PHP

Since Sep 11Pushed 7y ago1 watchersCompare

[ Source](https://github.com/bbcreation/calendar)[ Packagist](https://packagist.org/packages/bbcreation/calendar)[ RSS](/packages/bbcreation-calendar/feed)WikiDiscussions master Synced 4d ago

READMEChangelogDependenciesVersions (1)Used By (0)

Calendar
========

[](#calendar)

Laravel 5 Calendar

\##Information

This package is a clone of codeapps/calendar with appearance changes and to work in Laravel version &gt; 5.2.

\##Installation

Require bbcreation/calendar in composer.json and run composer update.

```
{
    "require": {
        "laravel/framework": "5.2.*",
        ...
        "codeapps/calendar": "dev-master"
    }
    ...
}

```

Composer will download the package. After the package is downloaded, open config/app.php and add the service provider and alias as below:

```

'providers' => array(
    ...
    'Codeapps\Calendar\CalendarServiceProvider::class',
),

'aliases' => array(
    ...
    'Calendar' => 'Codeapps\Calendar\Facades\Calendar::class',
),

```

Finally you need to publish a configuration file by running the following Artisan command.

```
php artisan vendor:publish

```

Include css in your view

```

```

Create a Controller

```
use Codeapps\Calendar\Calendar as Calendar;

public function create()
  {
    $data[] = [
            'label' => 'Label',
            'class' => 'blue',
            'events' => [

            [
            'label' => 'Codeapps',
            'start' => '2015-06-19 08:30:16',
            'end'   => '2015-06-23 10:30:16',
            'class' => '',
            'icon' => 'fa-arrow-down'
            ]
        ]
    ];

    return view('orders.create', compact('data'));
  }

```

Create a View and Add

```
{!! Calendar::render($data,['title'=>'Codeapps'])!!}

```

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/a42c18ee9a8c09c920d2e5ab565f734720f4dd9d28d4980c8e25fad2c19fc17d?d=identicon)[bbcreation](/maintainers/bbcreation)

---

Top Contributors

[![bbcreation](https://avatars.githubusercontent.com/u/12559573?v=4)](https://github.com/bbcreation "bbcreation (5 commits)")

### Embed Badge

![Health badge](/badges/bbcreation-calendar/health.svg)

```
[![Health](https://phpackages.com/badges/bbcreation-calendar/health.svg)](https://phpackages.com/packages/bbcreation-calendar)
```

PHPackages © 2026

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