Create and manage events in your Laravel application.
davide-casiraghi/laravel-events-calendar is a Laravel package for create and manage events in your laravel application..
It currently has 1 GitHub stars and 2.620 downloads on Packagist (latest version 2.9.4).
Install it with composer require davide-casiraghi/laravel-events-calendar.
Discover more Laravel packages by davide-casiraghi
or browse all Laravel packages to compare alternatives.
Last updated
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.
You can install the package via composer:
composer require davide-casiraghi/laravel-events-calendar
php artisan vendor:publish --force
php artisan migrate
php artisan db:seed --class=ContinentsTableSeeder
php artisan db:seed --class=CountriesTableSeeder
php artisan db:seed --class=EventCategoriesTableSeeder
Add this line to your resources/sass/app.scss file:
@import 'vendor/laravel-events-calendar/emptyPages';
and then run in console:
npm run dev
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';
To work the package aspect that in your user model and table you have a field called group that can have this possible values:
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.
After the package is published this new routes will be available:
Accessing to this routes you can manage new events, teachers, organizers, venues.
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
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.