PHPackages                             davide-casiraghi/laravel-events-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. davide-casiraghi/laravel-events-calendar

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

davide-casiraghi/laravel-events-calendar
========================================

Create and manage events in your Laravel application.

2.9.4(6y ago)12.6k2[1 issues](https://github.com/davide-casiraghi/laravel-events-calendar/issues)MITJavaScriptPHP ^7.2

Since May 7Pushed 5y agoCompare

[ Source](https://github.com/davide-casiraghi/laravel-events-calendar)[ Packagist](https://packagist.org/packages/davide-casiraghi/laravel-events-calendar)[ Docs](https://github.com/davide-casiraghi/laravel-events-calendar)[ RSS](/packages/davide-casiraghi-laravel-events-calendar/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (10)Dependencies (13)Versions (181)Used By (0)

Laravel Events Calendar
=======================

[](#laravel-events-calendar)

[![Latest Version on Packagist](https://camo.githubusercontent.com/7e32a8d4e2e9f91698fc024521d0218eab761c51df9c50ab88a088b7e8460c92/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6461766964652d6361736972616768692f6c61726176656c2d6576656e74732d63616c656e6461722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/davide-casiraghi/laravel-events-calendar)[![Build Status](https://camo.githubusercontent.com/ada6e10d91baac239634f64840807395dafcb56f25a4d49124cb2cdd7f2e014c/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6461766964652d6361736972616768692f6c61726176656c2d6576656e74732d63616c656e6461722f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/davide-casiraghi/laravel-events-calendar)[![Quality Score](https://camo.githubusercontent.com/870766cdbd79ea34a180950bed8571c57736826ec72173de67f69fed77cc1a7b/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6461766964652d6361736972616768692f6c61726176656c2d6576656e74732d63616c656e6461722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/davide-casiraghi/laravel-events-calendar)[![Coverage Status](https://camo.githubusercontent.com/f429a55a75466bffedbf533708988a4365ade59ffba6bdd3dd3e2a59efa552c0/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6461766964652d6361736972616768692f6c61726176656c2d6576656e74732d63616c656e6461722f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/davide-casiraghi/laravel-events-calendar/)[![](https://camo.githubusercontent.com/c352fa56caf3dd15573ce15f53cc20532fd6d78a44e7594300c56c6b9cae02b2/68747470733a2f2f6170692e636f6465636c696d6174652e636f6d2f76312f6261646765732f66393761373430333766323566316332393038382f6d61696e7461696e6162696c697479)](https://codeclimate.com/github/davide-casiraghi/laravel-events-calendar/maintainability)[![GitHub last commit](https://camo.githubusercontent.com/912c7c3f3f276c0737ef01259c5984a571f3ed53d7b2de5966405d8c5858b7e0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6173742d636f6d6d69742f6461766964652d6361736972616768692f6c61726176656c2d6576656e74732d63616c656e6461722e737667)](https://github.com/davide-casiraghi/laravel-events-calendar)

Create and manage calendar events in your Laravel application.
For each event can be selected: a venue, one or more teachers, one or more organizers.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require davide-casiraghi/laravel-events-calendar
```

### Publish all the vendor files

[](#publish-all-the-vendor-files)

`php artisan vendor:publish --force`

### Run the database migrations

[](#run-the-database-migrations)

`php artisan migrate`

### Run the database seeders

[](#run-the-database-seeders)

```
php artisan db:seed --class=ContinentsTableSeeder
php artisan db:seed --class=CountriesTableSeeder
php artisan db:seed --class=EventCategoriesTableSeeder
```

### Import the scss files

[](#import-the-scss-files)

Add this line to your **resources/sass/app.scss** file:
`@import 'vendor/laravel-events-calendar/emptyPages';`
and then run in console:
`npm run dev`

### Import the js files

[](#import-the-js-files)

Run in the command line:
`npm i jquery-validation`
`npm i bootstrap-select`
`npm i bootstrap-timepicker`

Add this line to your **resources/js/app.js** file:

```
import 'bootstrap-datepicker';
import 'tooltip.js';
import '@fancyapps/fancybox';
import 'jquery-validation';
import 'bootstrap-select';
import 'bootstrap-timepicker';

```

Usage
-----

[](#usage)

### Authorization

[](#authorization)

> To work the package aspect that in your user model and table you have a field called **group** that can have this possible values:

- null: Registered user
- 1: Super Admin
- 2: Admin

> Just the users that have **Admin** and **Super admin** privileges can access to the routes that allow to create, edit and delete the blogs, categories and posts. Otherwise you get redirected to the homepage.

### Access to the package

[](#access-to-the-package)

After the package is published this new routes will be available:

- /eventCategories
- /events
- /eventVenues
- /teachers
- /organizers
- /continents
- /continents

Accessing to this routes you can manage new events, teachers, organizers, venues.

### Testing

[](#testing)

You can run unit tests checking the **code coverage** using this command.

```
./vendor/bin/phpunit --coverage-html=html
```

So you can find the reports about the code coverage in this file /html/index.html

Since there are more that 100 tests in place you can run specific tests using commands such as:
`./vendor/bin/phpunit tests/TeacherControllerTest.php`
or
`./vendor/bin/phpunit --filter it_gets_the_event_repetitions EventControllerTest tests/EventControllerTest.php`

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Davide Casiraghi](https://github.com/davide-casiraghi)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

Laravel Package Boilerplate
---------------------------

[](#laravel-package-boilerplate)

This package was generated using the [Laravel Package Boilerplate](https://laravelpackageboilerplate.com).

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity73

Established project with proven stability

 Bus Factor1

Top contributor holds 99.9% 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 ~2 days

Total

179

Last Release

2218d ago

Major Versions

0.1.13 → 1.1.132019-05-19

1.3.29 → 2.0.02019-12-10

PHP version history (2 changes)1.0.0PHP ^7.1

2.1.15PHP ^7.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/9d09fa0d9b2a45d611866ca55a837bf8ca2da760ef1aa250cd59f04970f90abf?d=identicon)[davide-casiraghi](/maintainers/davide-casiraghi)

---

Top Contributors

[![davide-casiraghi](https://avatars.githubusercontent.com/u/6308587?v=4)](https://github.com/davide-casiraghi "davide-casiraghi (1034 commits)")[![mico](https://avatars.githubusercontent.com/u/5849?v=4)](https://github.com/mico "mico (1 commits)")

---

Tags

calendarcalendar-eventslaravellaravel-5-packagephpdavide-casiraghilaravel-events-calendar

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/davide-casiraghi-laravel-events-calendar/health.svg)

```
[![Health](https://phpackages.com/badges/davide-casiraghi-laravel-events-calendar/health.svg)](https://phpackages.com/packages/davide-casiraghi-laravel-events-calendar)
```

###  Alternatives

[laravolt/avatar

Turn name, email, and any other string into initial-based avatar or gravatar.

2.0k5.4M31](/packages/laravolt-avatar)[flarum/core

Delightfully simple forum software.

211.3M1.9k](/packages/flarum-core)[beyondcode/laravel-favicon

Create dynamic favicons based on your environment settings.

37345.5k](/packages/beyondcode-laravel-favicon)[erlandmuchasaj/laravel-gzip

Gzip your responses.

40129.3k2](/packages/erlandmuchasaj-laravel-gzip)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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