Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skecskes/laravel-calendar
Flexible Calendar for Laravel 5
https://github.com/skecskes/laravel-calendar
calendar laravel laravel5 package php
Last synced: about 1 month ago
JSON representation
Flexible Calendar for Laravel 5
- Host: GitHub
- URL: https://github.com/skecskes/laravel-calendar
- Owner: skecskes
- Created: 2015-09-11T11:34:59.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-24T01:45:46.000Z (over 8 years ago)
- Last Synced: 2024-09-29T11:45:21.447Z (about 1 month ago)
- Topics: calendar, laravel, laravel5, package, php
- Language: PHP
- Homepage:
- Size: 52.7 KB
- Stars: 11
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel 5 Calendar
Flexible Calendar for Laravel 5, supports Month, Week and Day Views and multiple events per date.
To change the view type dynamically, pass in a GET variable called 'cv' (calendar view) with either a 'week' or 'day' value. Day and Week views are split into 30 minute interval rows.
**For Laravel 4 use [makzumi/laravel-calendar](https://github.com/makzumi/laravel-calendar)**
## Installation instructions for Laravel 5:
Add this to "require" section in composer.json:
"skecskes/calendar": "0.2.*"
After that run a `composer update`, and then in /config/app.php add this line to providers array:
'providers' => array(
...,
Skecskes\Calendar\CalendarServiceProvider::class,
),If you want to change some of the default values of calendar, first publish the configuration with
php artisan vendor:publish
This will create new configuration file in your app `config/calendar.php` where you can overwrite default values.
## Usage
To use, create a new Calender instance and generate it, below you'll find several options to customize it as well:
$events = array(
"2014-04-09 10:30:00" => array(
"Event 1",
"Event 2 with html",
),
"2014-04-12 14:12:23" => array(
"Event 3",
),
"2014-05-14 08:00:00" => array(
"Event 4",
),
);$cal = Skecskes\Calendar\Facades\Calendar::make(); // create instance
/**** OPTIONAL METHODS ****/
$cal->setDate(Input::get('cdate')); //Set starting date
$cal->setBasePath('/dashboard'); // Base path for navigation URLs
$cal->showNav(true); // Show or hide navigation
$cal->setView(Input::get('cv')); //'day' or 'week' or null
$cal->setStartEndHours(8,20); // Set the hour range for day and week view
$cal->setTimeClass('ctime'); //Class Name for times column on day and week views
$cal->setEventsWrap(array('', '
')); // Set the event's content wrapper
$cal->setDayWrap(array('','')); //Set the day's number wrapper
$cal->setNextIcon('>>'); //Can also be html:
$cal->setPrevIcon('<<'); // Same as above
$cal->setDayLabels(array('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat')); //Label names for week days
$cal->setMonthLabels(array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December')); //Month names
$cal->setDateWrap(array('','')); //Set cell inner content wrapper
$cal->setTableClass('table'); //Set the table's class name
$cal->setHeadClass('table-header'); //Set top header's class name
$cal->setNextClass('btn'); // Set next btn class name
$cal->setPrevClass('btn'); // Set Prev btn class name
$cal->setEvents($events); // Receives the events array
/**** END OPTIONAL METHODS ****/echo $cal->generate() // Return the calendar's html;